Zip64Mode Enum
Namespace: Rebex.IO.Compression
Assembly: Rebex.Zip.dll (version 7.0.9083)
Specifies values for the 64-bit ZIP mode (compatible with ZIP64(tm)) when adding new files.
Without the 64-bit ZIP extension:
- files longer than 4GB cannot be added to the archive,
- archives larger than 4GB cannot be created,
- the archive can contain maximum 65535 entries.
Syntax
public enum Zip64Mode
Remarks
ZIP64 is registered trademark of PKWARE, Inc.
Fields
Name | Description |
---|---|
Always | Always use the 64-bit ZIP extension. |
Auto | Automatically determines whether the 64-bit ZIP extension need to be used. |
Never | Never use the 64-bit ZIP extension. If the compressed or uncompressed size of the added file is longer than 4GB an exception is thrown. Adding file to archive longer than 4GB also throws an exception. |