Syntax
UncompressFile <infile> <outfile>Description
Uncompress a previously compressed file.Parameters
<infile>
- The file to be uncompressed
<outfile>
- The file to be receive the uncompressed data
Remarks
UncompressFile uncompresses file compressed with the CompressFile statement and any file compressed according to RFC 1950 (ZLIB Compressed Data Format Specification). See also CompressFile.Example
UncompressFile "mydata.gz" "mydata.txt"The above example uncompresses the file mydata.gz and places the result in mydata.txt.