Archive file access mode.

Namespace:  Rebex.IO.Compression
Assembly:  Rebex.Zip (in Rebex.Zip.dll) Version: 1.0.3844.0

Syntax

C#
public enum ArchiveAccessMode
Visual Basic (Declaration)
Public Enumeration ArchiveAccessMode
Visual C++
public enum class ArchiveAccessMode

Members

Member nameDescription
Auto
Choose the access mode automatically. ReadWrite mode is used if the archive file can be open for writing; Read is used otherwise.
Read
Read access to the archive file. Data can only be read from the file.
ReadWrite
Read and write access to the archive file. Data can be written to and read from the file.

See Also