| | |
Constant | Details | Used by |
---|
zipAdministrator | Forces the created executable file to run as administrator. This mode avoids file virtualization from Windows Vista. | <zipArchive variable>.CreateExe |
zipAnsi | Saves ANSI file names in the Archive file. This constant is used by default in applications using the ANSI standard. | <zipArchive variable>.Create |
zipCancel | Cancels the extraction of files from the archive. | <zipArchive variable>.ExtractFileList, <zipArchive variable>.ExtractAll |
zipCreateIfNotFound | Creates the archive if it does not exist. | <zipArchive variable>.Open |
zipCurrentDirectory | All files in the archive will be extracted to the current directory. | <zipArchive variable>.CreateExe, |
zipDefaultDir | Uses the default directory. | <zipArchive variable>.CreateExe, |
zipDirectory | Stores the different directories that are part of the path, as well as the file name and extension. For example: \Directory\Files\FileName.pdf Returns the different directories of the file (the file name and extension are not returned) | <zipArchive variable>.AddFile <zipArchive variable>.AddDirectory <zipArchive variable>.ExtractPath <zipArchive variable>.ExtractFile <zipArchive variable>.ExtractAll |
zipDrive | Stores the full and absolute path of the file (disk, directories, file name and extension). For example: C:\Directory\Files\FileName.pdf This constant has no effect on the ZIP format. Returns the unit name only. | <zipArchive variable>.AddFile <zipArchive variable>.AddDirectory <zipArchive variable>.ExtractPath <zipArchive variable>.ExtractFile <zipArchive variable>.ExtractAll |
New in SaaSzipExe64 | Creates a 64-bit self-extracting executable. | <zipArchive variable>.CreateExe |
zipExtension | Returns only the file extension (preceded by "."). | <zipArchive variable>.ExtractPath |
zipFilename | Returns only the file name (without extension). | <zipArchive variable>.ExtractPath |
zipFormat7Z | 7z archive file. | zipArchive variable |
zipFormatCAB | CAB archive file. | zipArchive variable |
zipFormatNone | No archive file is created. | hBackupDescription variable |
zipFormatRAR | RAR archive file. | zipArchive variable |
zipFormatTAR | TAR format (decompressed archive file). | zipArchive variable |
zipFormatTARGZ | TARGZ archive file. | zipArchive variable |
zipFormatWDZ | WDZ archive file. | zipArchive variable |
zipFormatZIP | ZIP archive file. | zipArchive variable hBackupDescription variable |
zipHeader64 | Allows you to create an archive larger than 4 GB on which zipChangePath can be used. | <zipArchive variable>.Create, <zipArchive variable>.Open, <zipArchive variable>.OpenCAB (Function), <zipArchive variable>.OpenRAR |
zipIgnore | Ignores file extraction with errors. | <zipArchive variable>.ExtractFileList, <zipArchive variable>.ExtractAll |
zipInMemory | Enables you to manipulate archives stored in memory (add files from a buffer or extract files to a buffer). | <zipArchive variable>.AddFile, <zipArchive variable>.ExtractFile |
zipNone | Stores the file name and extension. For example: FileName.pdf Files are extracted to the current directory without restoring the file tree structure (if it was stored). | <zipArchive variable>.AddFile <zipArchive variable>.ExtractFile |
zipOverwrite | During extraction, existing read-only files are automatically overwritten with the extracted files. | <zipArchive variable>.ExtractAll |
zipRead | Opens an archive in read-only mode | <zipArchive variable>.Open |
zipRelative | The path passed as a parameter is considered the root of the archive. The stored path for all files and subdirectories is relative to this root. | <zipArchive variable>.AddDirectory |
zipRetry | Retries the file extraction. | <zipArchive variable>.ExtractFileList, <zipArchive variable>.ExtractAll |
zipSelectRestorePath | The self-extractor shows the "Preserve tree structure" option in the dialog box. | <zipArchive variable>.CreateExe |
zipTempDirectory | The archive files will be extracted to the temporary directory of the computer where the executable file is run. All files are extracted to the same location. | <zipArchive variable>.CreateExe, |
zipTree | The files will be extracted while preserving the archive's directory structure. | <zipArchive variable>.CreateExe |
zipUncompressed | The contents of the archive will not be compressed. | <zipArchive variable>.Create |
zipUnicode | Saves Unicode file names in the Archive file. This constant is used by default in an application using Unicode. | <zipArchive variable>.Create |
zipWithUI | The self-extractor will display a dialog box allowing users to chose the destination directory. Note: In previous versions, this constant corresponds to zipWithGUI. | <zipArchive variable>.CreateExe |
zipWrite | Opens an archive in read/write mode. | <zipArchive variable>.Open |