Specifies the compression level used for archive updating.
type TZFCompressionLevel = (clNone,clFastest,clNormal,clMax);
property CompressionLevel: TZFCompressionLevel;
Description
This property determines compression level for adding, moving or updating files. If you need only to store files, set CompressionLevel to clNone.
Set CompressionLevel to desired value before adding, moving or updating files.
CompressionLevel can be set to any of the following values:
Value
|
Meaning
|
clNone
|
There is no compression
|
clFastest
|
The fastest compression level and low compression rate
|
clNormal
|
Normal compression level. Slower compression and better compression rate than clFastest
|
clMax
|
Slow compression and maximum compression rate
|
Note: The CompressionLevel and CompressionMode properties influence each other. Setting one automatically determines value for the other.
|
|