|
|
|
|
<zipArchive>.SelectFile (Function) In french: <zipArchive>.SélectionFicher Selects files from an archive. The selected files will be processed by the archive management WLanguage functions.. This makes it possible to select only ".doc" files from an archive, for example. In this case, all the WLanguage functions used to handle the whole archive (e.g., <zipArchive variable>.ExtractAll) will only affect the selected files (".doc" files in our example). New in version 28Archive is zipArchive // Open an archive IF Archive.Open("C:\Archives\Archive.zip") = 0 THEN // Extract documents only sPreviousSelection is string = Archive.SelectFile("*.doc") // Extract all documents from the archive Archive.ExtractAll(zipDrive) // Restore previous selection Archive.SelectFile(sPreviousSelection) END Syntax
<Result> = <Archive>.SelectFile([<Selection>])
<Result>: Character string Previous selection applied to the archive. <Archive>: zipArchive variable Name of a variable of type zipArchive corresponding to the archive to use. <Selection>: Optional character string Generic name of the files to be selected. Generic characters (* and?) are allowed. If this parameter is not specified or is set to an empty string (""), the selection will be removed and all files will be processed. Remarks Principle After calling <zipArchive>.SelectFile, the next archive management functions that handle all the files in the archive will take the selection into account: these functions will only manipulate the selected files. To handle all the files in the archive again, simply call <zipArchive>.SelectFile without specifying the <Selection> parameter.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|