A collections of functions that supports the Zip and GZip functionality by using the Java Zip file API.
|
Method Summary |
boolean |
AddFiles(string zipFilePath, [string files=''], [string directory=''], [string filter=''], [boolean recurse='no'], [numeric compression='9'], [boolean savePaths='no'])
Add files to a new or an existing Zip file archive
|
boolean |
DeleteFiles(string zipFilePath, string files)
Delete files from an existing Zip file archive
|
boolean |
Extract(string zipFilePath, [string extractPath='[runtime expression]'], [string extractFiles], [boolean useFolderNames='yes'], [boolean overwriteFiles='no'])
Extracts a specified Zip file into a specified directory
|
private array |
FilesList(string directory, [string filter=''], [boolean recurse='no'])
Create an array with the file names of specified directory
|
query |
List(string zipFilePath)
List the content of a specified Zip file
|
private string |
PathFormat(string path)
Convert path into Windows or Unix format
|
Zip |
configure()
Configure for operation
|
boolean |
gzipAddFile(string gzipFilePath, string filePath)
Create a new GZip file archive
|
boolean |
gzipExtract(string gzipFilePath, [string extractPath='[runtime expression]'])
Extracts a specified GZip file into a specified directory
|