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
  • Search mode
  • Index of files in the archive
  • Formats of archives
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Search for a file in an archive (in CAB, ZIP, RAR, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format). The search is performed in the stored path of the file.
New in version 2025
WINDEVWEBDEV - Server codeWindowsLinuxiPhone/iPad The gzip format (.gz extension) is now supported.
WINDEVWEBDEV - Server codeUser code (UMC)Ajax
// Création de l'archive 
MonArchive is zipArchive
ResCréation = zipCreate(MonArchive, "C:\Temp\Archive.zip")
IF ResCréation = 0 THEN
	...
	// Recherche d'un fichier dont le chemin mémorisé contient "Temp"
	ResFichierTrouvé = zipFindFile(MonArchive, "Temp", False)
	...
END
Syntax
<Result> = zipFindFile(<Archive> , <Sought path> [, <Search mode> [, <Start>]])
<Result>: Integer
  • Index of the file sought in the archive,
  • -1 if an error occurs or if the file is not found.
<Archive>: Character string or zipArchive variable
Name of the archive in which the file must be sought.
This name can correspond to:
<Sought path>: Character string
Full or partial path of the file to find. This parameter can correspond to:
  • a file name,
  • the full path of a file,
  • the path and name of a file,
  • ...
When a path is specified, a backslash (\) is used as separator, and the root directory must not be specified.
The search is not case sensitive (lowercase/uppercase characters).
<Search mode>: Optional boolean
  • True (default value) for an exact-match search,
  • False for a generic search. The search is not case sensitive (lowercase/uppercase characters).
Archives in 7z format: This parameter is not available.
<Start>: Optional integer
Index of the file from which the search must be performed (1 by default, i.e. the first file included in the archive).
Archives in 7z format: This parameter is not available.
Remarks

Search mode

Depending on the selected <Search mode>, the result may differ:
  • If an exact-match search is performed, zipFindFile will find the files whose stored path is strictly identical to <Sought path>.
    For example: an archive contains the files "Temp.doc", "Temp1.doc" and "Temp2.doc". An exact-match search for "Temp.doc" will find "Temp.doc".
  • If a generic search is performed, zipFindFile will find all the files whose stored path contains <Stored path>.
    For example: an archive contains the files "Temp.doc", "Temp1.doc" and "Temp2.doc". A generic search for the "Temp" string will find three files.
Reminder The memorized path is defined with zipAddFile or zipAddDirectory.

Index of files in the archive

When a file is added into an archive, an index is automatically assigned to the file. This index corresponds to the order in which the files are included in the archive. To select a file in the archive, you can use:
  • the index of the element.
  • the stored path of the element.

Formats of archives

  • LinuxiPhone/iPadIOS WidgetMac Catalyst Only archives in ZIP, TAR, gzip and TGZ (TAR.GZ) formats are available.
  • AndroidAndroid Widget Java Only ZIP archives are available.
Business / UI classification: Business Logic
Component: wd300zip.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help