SUB File ( Source AS String, Target AS String ) |
Once you have selected the compression driver, you can decompress a file and place the result in another file using this method.
* Source : Path to the source file (compressed file). It must be a valid compressed file, using the same compression algorithm that is selected in the Type property.
* Target : Path to the target file (file decompressed) It that file already exists, It will be overwritten.
... Dim Cp As New Uncompress Cp.Type = "zlib" Cp.File ( "/home/foo/README.TXT.gz" , "/home/foo/README.TXT" ) ...