Programming Reference Manual
 
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.
 
Parameter
Description
GZFile
The path and file name of the existing .gz archive.
ExtractDir
This string value is the path and name of the target directory. A path relative to the current directory can be used. 
The path must be valid and existing.
See Also
Example
 
Sub Main
    Debug.Print UnTarFiles("C:\bigdata.gz","c:\temp\") 'True
End Sub