|
|
|
|
|
zipMsgError (Function) In french: zipMsgErreur Returns the message associated with an error code on an archive. New in version 2025MonArchive is zipArchive
ResOuvreArchive = zipOpen(MonArchive)
IF ResOuvreArchive <> 0 THEN
Info(zipMsgError(ResOuvreArchive))
...
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: Path passed as parameter does not exist.
- 2: Access denied: user does not have sufficient rights.
- 3: The archive is corrupt.
- 4: The path does not exist in the archive.
- 5: Unable to write to archive.
- 6: Sub-archive files are not in order (case of extraction from a multi-part archive).
- 7: The file is already present in the archive.
- 8: An archive cannot be added to itself. For example, "MyArchive" cannot be added to "MyArchive".
- 9: Not enough memory to perform the operation.
- 10: Not enough space to create the executable, or the user does not have write access to the original archive (.WDZ).
- 11: Icon not found or wrong format.
- 12: Not enough space to create the executable, or the user does not have read access to the original archive (.WDZ).
Reminder: Only archives in ZIP, gzip, TAR and TGZ (TAR.GZ) formats are available. Only ZIP archives are available.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|