System.Zip.TZipMode
Delphi
TZipMode = (zmClosed, zmRead, zmReadWrite, zmWrite);
C++
enum DECLSPEC_DENUM TZipMode : unsigned char { zmClosed, zmRead, zmReadWrite, zmWrite };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | System.Zip.pas System.Zip.hpp |
System.Zip | System.Zip |
Description
Represents an enumeration of opening modes for the .zip file.
The following table describes the possible values:
Value | Meaning |
---|---|
|
The file is closed for reading and writing. |
|
Open the file for reading only. |
|
Open the file for writing only. Writing to the file completely replaces the current contents. |
|
Open the file to modify the current contents rather than replacing them. |