Home / comp / gb.compress / uncompress / file 
Uncompress.File (gb.compress)
Syntax
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.

Examples

DIM Cp AS NEW Uncompress

Cp.Type = "zlib"
Cp.File("/home/foo/README.TXT.gz", "/home/foo/README.TXT")