ZipArchiveMode
Enum
Defines how a ZIP archive is accessed: creating new entries, reading existing ones, or updating content in place.
Definition
Namespace:Telerik.Windows.Zip
Assembly:Telerik.Windows.Zip.dll
Syntax:
C#
public enum ZipArchiveMode
Fields
Allows only adding new entries to a new archive; existing content cannot be read or modified.
C#
Create = 0
Permits read-only access to existing entries without modification.
C#
Read = 1
Supports reading existing entries and creating, deleting, or overwriting entries within the archive.
C#
Update = 2