ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Archive functions
  • Reminder
  • Number of files in an archive
  • Stored path
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
<zipArchive variable>.ListFile (Function)
In french: <Variable zipArchive>.ListeFichier
Returns the list of files found in an archive.
New in version 2025
WINDEVWEBDEV - Server codeWindowsLinuxiPhone/iPad The gzip format (.gz extension) is now supported.
Example
WINDEVWEBDEV - Server codeReports and QueriesUser code (UMC)Ajax
MonArchive is zipArchive
// Ouverture d'une archive
ResOuvreArchive = MonArchive.Open("C:\Temp\MonArchive.ZIP")
IF ResOuvreArchive = 0 THEN
	...
	// Renvoie la liste des fichiers de l'archive
	UneListeDeFichiers = MonArchive.ListFile()
	// Affichage des fichiers dans un champ Liste
	LISTE_FichierZip.Ajoute(UneListeDeFichiers)
	...
END
Syntax
<Result> = <Archive>.FileList()
<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>: zipArchive variable
Name of a variable of type zipArchive corresponding to the archive to use.
Remarks

Reminder

  • LinuxiPhone/iPadIOS WidgetMac Catalyst Only archives in ZIP, gzip, TAR and TGZ (TAR.GZ) formats are available.
  • AndroidAndroid Widget Only ZIP 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 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.
Component: wd300zip.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/28/2025

Send a report | Local help