ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Archive functions
  • Use conditions
  • Using an archive encrypted with a password
  • Miscellaneous
  • Error codes
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
Defines the password used to add files into the specified archive and to extract files from the specified archive (RAR, ZIP and WDZ format). The password is associated with each archive file.
Example
MonArchive is zipArchive
 
ArchiveChemin is string = CompleteDir(fCurrentDir()) + "Archive.ZIP"
IF fExtractPath(ArchiveChemin, fExtension) ~= ".zip" THEN
IF zipOpen(MonArchive, ArchiveChemin) = 0 THEN
 // Crypte l'archive
 zipPassword(MonArchive, "MotDePasse")
 zipAddFile(MonArchive, "C:\MonFic.txt")
 // Ajout du fichier. Le fichier est crypté par le mot de passe
END
END
Syntax
<Result> = zipPassword(<Archive> , <Password>)
<Result>: Integer
  • 0 if the password was defined properly,
  • An error code (value greater than 0) otherwise.
<Archive>: Character string or zipArchive variable
Name of archive to use.
This name can correspond to:
<Password>: Character string
Password used to encrypt the added files or to decrypt the extracted files. This password must use characters with an ASCII code between 1 and 127. This password cannot exceed 255 characters.
To avoid encrypting the added files or the extracted files, you have the ability to use an empty string ("").
Remarks

Use conditions

  • The RAR, ZIP and WDZ formats do not protect the archive when it is opened. The password is required for extracting the files from the archive and for adding the files into the archive.
  • Archives in 7z format: This function is not available.
  • Archives in TAR and TGZ (TAR.GZ) format: This function is not available.
Universal Windows 10 AppiPhone/iPadIOS WidgetMac Catalyst Reminder: Only ZIP, TAR and TGZ (TAR.GZ) archives are available.

Using an archive encrypted with a password

The password is defined by the function zipPassword. Once the password is defined, it is used for all the following archiving operations:
  • Adding files: the added files will be encrypted with this password
  • File extraction: the password will be used to decrypt all the extracted files.
The password is active for the archive on which it was defined. If the archive is destroyed (function zipClose), the password is lost. It must be specified again after zipOpen or zipCreate.

Miscellaneous

  • A different password can be specified for each added or extracted file in the same archive. You just have to use the zipPassword function each time you add or extract a file, specifying the password expected by the file to be added / extracted.
  • Unable to directly modify the password of a file found in an archive. You must extract the file, delete it from the archive and re-add it to the archive with the new password.
  • zipInfoFile is used to find out whether a file in the archive is encrypted (+) or normal (N).

Error codes

The following error codes are returned:
  • 23: Feature not available for this archive format.
The message corresponding to the error code is returned by zipMsgError.
Business / UI classification: Business Logic
Component: wd270zip.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