Syntax
| UnZipFiles(ZipFile, ExtractDir[, InclMask][, ExclMask][, OverwriteFiles])
| ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Description
| Extracts compressed files and from a .zip archive file into extractdir.
The function returns True if the compression completed successfully. If an error occured, the function returns False.
Especially when extracting large (quantity of) files, the progress of the extracting operation can be monitored by watching the status bar of the TRADIUM main programme.
| ||||||||||||
See Also
| |||||||||||||
Example
| Sub Main
Debug.Print UnZipFiles("C:\test.zip","c:\temp\", OverwriteFiles:=True) 'True
End Sub
|