Decompresses the source file and writes the decompressed file into the destination file.
object.Decompress(
SourceFile As String,
DestinationFile As String)
The name of the file to be decompressed.
The name of the output file.
Boolean. Returns TRUE if successful, otherwise, FALSE.
This example decompresses ion.bas and writes it into ori.bas.
Set Zip=CreateObject("UCX:ZipFile")
print Zip.Compress("server.bas","ion.bas")
if(err.Number<>0) then
print(err.Description)
endif
print Zip.Decompress("ion.bas", "ori.bas")
if(err.Number<>0) then
print(err.Description)
endif