|
|
|
|
|
- Reminder
- Number of files in an archive
- Stored path
zipListFile (Function) In french: zipListeFichier Returns the list of files found in an archive. New in version 2025Syntax
<Result> = zipListFile(<Archive>)
<Result>: Character string List of files found in the archive. This list uses the following format:
<Stored path> + CR + <Stored path 2> + CR +... <Stored path> corresponds to the file name and path (if the file path was stored when the file was added into the archive). <Archive>: Character string or zipArchive variable Name of the archive to be used. This name can correspond to: Remarks Number of files in an archive The number of files found in an archive is returned by zipNbFile. Stored path The table below presents the paths stored in the archive according to: - the access path to the file,
- the stored path section.
The current directory is: "C:\Temp". | | | | | zipAddFile | File location | zipNone | zipDirectory | zipDrive | zipAddFile("Archi", "File.txt") | C:\Temp\File.txt | File.txt | File.txt | File.txt | zipAddFile("Archi", "Data\File.txt") | C:\Temp\Data\File.txt | File.txt | Data\File.txt | Data\File.txt | zipAddFile("Archi", "D:\Data\File.txt") | D:\Data\File.txt | File.txt | Data\File.txt | D:\Data\File.txt | Remark: If the constant zipDisk is used, WDZ format memorizes the full path of the file (including drive letter), whereas ZIP format does not memorize the drive letter. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|