ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Archive functions
  • Reminder
  • Number of files in an archive
  • Stored path
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the list of files found in an archive.
WEBDEV - Server codeAjax
MyArchive is zipArchive
// Open an archive
ResOpenArchive = zipOpen(MyArchive, "C:\Temp\MyArchive.ZIP")
IF ResOpenArchive = 0 THEN
...
// Return the list of files found in the archive
AListOfFiles = zipListFile(MyArchive)
// Display files in a List Box control
ListAdd(LIST_ZipFile, AListOfFiles)
...
END
Syntax
<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

Reminder

  • Linux Only ZIP, TAR and TGZ (TAR.GZ) archives are available.

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".
zipAddFileFile locationzipNonezipDirectoryzipDrive
zipAddFile("Archi",
"File.txt")
C:\Temp\File.txtFile.txtFile.txtFile.txt
zipAddFile("Archi",
"Data\File.txt")
C:\Temp\Data\File.txtFile.txtData\File.txtData\File.txt
zipAddFile("Archi",
"D:\Data\File.txt")
D:\Data\File.txtFile.txtData\File.txtD:\Data\File.txt

Remark: If the zipDrive constant is used, the WDZ format stores the full path of the file (including the drive letter) while the ZIP format does not store the drive letter.
Business / UI classification: Business Logic
Component: wd290zip.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/12/2023

Send a report | Local help