SUB File ( Source AS String, Target AS String [ , Level AS Integer ] ) |
* Source : Path of the source file (file to be compressed)
* Target : Path of the target file (compressed file). If that file already exists, it will be overwritten.
* Level : Compression level, can be a value from Min value to Max value. If you do not pass this parameter, Default value will be used.
... Dim Cp As New Compress Cp.Type = "zlib" Cp.File ( "/home/foo/README.TXT" , "/home/foo/README.TXT.gz" , Cp.Max ) ...