ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Archive functions
  • 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
Returns the message associated with an error code on an archive.
MyArchive is zipArchive
// Open an archive
ResOpenArchive = zipOpen(MyArchive)
// Error while opening an archive
IF ResOpenArchive <> 0 THEN
// Display an error message
Info(zipMsgError(ResOpenArchive))
...
END
Syntax
<Result> = zipMsgError(<Error code>)
<Result>: Character string
Error message associated with the type of error specified.
<Error code>: Integer
Error code returned when handling an archive.
Remarks

Error codes

The following error codes are returned by the archiving functions:
  • 1: The path passed as parameter does not exist.
  • 2: Access denied: the user has no sufficient rights.
  • 3: The archive is corrupted.
  • 4: The path does not exist in the archive.
  • 5: Unable to write into the archive.
  • 6: The files of the sub-archives are not arranged in order (when extracting from a multi-part archive).
  • 7: The file is already found in the archive.
  • 8: An archive cannot be added to itself. For example, "MyArchive" cannot be added to "MyArchive".
  • 9: Insufficient memory to perform the operation.
  • 10: Insufficient space to create the executable or the user has no write rights on the original archive (.WDZ).
  • 11: The icon is not found or the icon format is invalid.
  • 12: Insufficient space to create the executable or the user has no read rights on the initial archive (.WDZ).
Reminder:
  • LinuxUniversal Windows 10 AppiPhone/iPadIOS WidgetMac Catalyst Only ZIP, TAR and TGZ (TAR.GZ) archives are available.
  • AndroidAndroid Widget Java Only ZIP archives are available.
Component: wd290zip.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/12/2022

Send a report | Local help