ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Archive functions
  • Reminder
  • Index of files in the archive
  • Stored path
  • Encrypting a file in an archive
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 characteristics of a file found an archive:
  • The name of the file and its stored path.
  • The initial size of the file.
  • The compressed size of file.
  • The date and time of file creation.
  • The date and time of file modification.
  • The date and time of file access.
  • The file attributes.
  • The file encryption mode.
The archive file can be identified by its number or by its path in the archive.
WEBDEV - Server codeAjax
Archive is zipArchive
 
// Open an archive
ResOpenArchive = zipOpen(Archive, "C:\Archives\Archive.zip")
 
IF ResOpenArchive = 0 THEN
...
// Information about an archive file
ResFileInfo = zipInfoFile(Archive, "C:\Directory\File.doc")
// Display the file information
Info("The file information is: ", ResFileInfo)
...
END
Syntax

Getting the details of a file identified by its index Hide the details

<Result> = zipInfoFile(<Archive> , <File index in the archive>)
<Result>: Character string
  • Empty string if the function failed (file not found in the archive, etc.).
  • Characteristics of the file found in the specified archive:
    <File path and name> + TAB + <Initial file size> + TAB +
    <Compressed file size> + TAB +
    <Date and time of file creation (YYYYMMDDHHmmSS)> + TAB +
    <Date and time of file modification (YYYYMMDDHHmmSS)> + TAB +
    <Date and time of file access (YYYYMMDDHHmmSS)> + TAB +
    <File attributes> + TAB + <File encryption mode>
    • The file attributes correspond to one or more letters (or "ERR" if an error occurred). The following letters are used:
      • R: Read-only file. The file can be accessed in read-only.
      • H: Hidden file. The file name is grayed or invisible in the explorer.
      • S: System file. The file is a system file of Windows.
      • A: "Archive" file. This attribute indicates that the file can be archived. Some programs use this attribute to determine which files have been saved.
      • D: Directory or subdirectory. The file is a directory or a subdirectory.
    • The file encryption encryption is "+" for an encrypted file (zip or WDZ) and "N" for a standard file.
Archives in Zip format and in 7z format: Only the date of last modification is returned.
<Archive>: Character string or zipArchive variable
Name of the archive to be used.
This name can correspond to:
<File index in the archive>: Integer
Index of a file in the archive. The characteristics of this file are requested. zipFindFile returns this index.

Finding out information about a file identified by its path Hide the details

<Result> = zipInfoFile(<Archive> , <File path in archive>)
<Result>: Character string
  • Empty string if the function failed (file not found in the archive, etc.).
  • Characteristics of the file found in the specified archive:
    <File path and name> + TAB + <Initial file size> + TAB +
    <Compressed file size> + TAB +
    <Date and time of file creation (YYYYMMDDHHmmSS)> + TAB +
    <Date and time of file modification (YYYYMMDDHHmmSS)> + TAB +
    <Date and time of file access (YYYYMMDDHHmmSS)> + TAB +
    <File attributes> + TAB + <File encryption mode>
    • The file attributes correspond to one or more letters (or "ERR" if an error occurred). The following letters are used:
      • R: Read-only file. The file can be accessed in read-only.
      • H: Hidden file. The file name is grayed or invisible in the explorer.
      • S: System file. The file is a system file of Windows.
      • A: "Archive" file. This attribute indicates that the file can be archived. Some programs use this attribute to determine which files have been saved.
      • D: Directory or subdirectory. The file is a directory or a subdirectory.
    • The file encryption mode corresponds to "+" for an encrypted file (in zip or WDZ format) and to "N" for a standard file.
Archives in Zip format and in 7z format: Only the date of last modification is returned.
<Archive>: Character string or zipArchive variable
Name of the archive to be used.
This name can correspond to:
<File path in archive>: Character string
Stored path of a file found in the archive. The characteristics of this file are requested.
Remarks

Reminder

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

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 index of an element is returned by zipFindFile).
  • the stored path of the element.

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.
WEBDEV - Server codeAjax

Encrypting a file in an archive

A file can be encrypted in an archive by zipPassword.
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