Specifies how the archive should open a file.
| Member Name | Description |
|---|---|
| Extract | Specifies that the archive should open an existing file for reading only. |
| Add | Specifies that the archive should create a new file for write only. If the file already exists, an IOException is thrown. |
| AddReplace | Specifies that the archive should create a new file for write only. If the file already exists, it will be overwritten. |
| Replace | Specifies that the archive should replace a file for write only. If the file does not exists, an FileNotFoundException is thrown. |
Namespace: Resco.IO.Zip
Assembly: Resco.Zip.CF3 (in Resco.Zip.CF3.dll)