Home > comp > gb.compress > compress > file 
  [3.0]
 fr de es it nl pl pt pt_BR mk sq ca ar fa vi ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
Compress.File (gb.compress)
Syntax
SUB File ( Source AS String, Target AS String [ , Level AS Integer ] )

Once you have selected the compression driver, you can compress a file and place the result in another file using this method.

Examples

...
Dim Cp As New Compress

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