Enum CompressionMethod
Compression method enumeration.
Namespace: SharpSevenZip
Assembly: SharpSevenZip.dll
Syntax
public enum CompressionMethod
Remarks
Some methods are applicable only to Zip format, some - only to 7-zip.
Fields
Name | Description |
---|---|
BZip2 | Zip or 7-zip|Bzip2 method. |
Copy | Zip or 7-zip|no compression method. |
Default | No method change. |
Deflate | Zip|Deflate method. |
Deflate64 | Zip|Deflate64 method. |
Lzma | Zip or 7-zip|LZMA method based on Lempel-Ziv algorithm, it is default for 7-zip. |
Lzma2 | 7-zip|LZMA version 2, LZMA with improved multithreading and usually slight archive size decrease. |
Ppmd | Zip or 7-zip|PPMd method based on Dmitry Shkarin's PPMdH source code, very efficient for compressing texts. |