|

Status


(number) The status of the current callback message. Either ZIP_STATUS_MAJOR or ZIP_STATUS_MINOR. ZIP_STATUS_MAJOR means that the callback corresponds to the progress of the action as a whole. ZIP_STATUS_MINOR means that the callback corresponds to the progress of the current file.


The callback function should return a boolean value (true or false) indicating whether the extraction of the Zip file should continue:



VALUE DESCRIPTION


true


Continue with the Zip file extraction.


false


Stop the Zip file extraction as soon as possible.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

Zip.GetContents

OverviewExamples

table Zip.GetContents ( string ZipFile,


boolean IncludeFolderNames = true )


De s cr ip t ion


Returns the list of files within a given Zip file.


P arame t er s


ZipFile


(string) The full path and file name of the Zip archive file.


|