Syntax
| UnTarFiles(GZFile, ExtractDir)
| ||||||
---|---|---|---|---|---|---|---|
Description
| Extracts compressed files and from a .gz archive file into extractdir. If files in the archive already exists in the extractdir, these files will be overwritten.
The function returns True if the extraction completed successfully. If an error occured, the function returns False.
| ||||||
See Also
| |||||||
Example
| Sub Main
Debug.Print UnTarFiles("C:\bigdata.gz","c:\temp\") 'True
End Sub
|