|
area
|
|
|
Access
|
read-only
|
|
Returns
|
String
|
|
defaultCompression
|
|
|
Access
|
read-only
|
|
Returns
|
int
|
|
isOpen
|
|
|
Access
|
read-only
|
|
Returns
|
boolean
|
|
openMode
|
|
|
Access
|
read-only
|
|
Returns
|
int
|
|
path
|
|
|
Access
|
read-only
|
|
Returns
|
fPath
|
|
close
|
|
|
Parameters
|
None
|
|
Returns
|
void. None.
|
|
fileAdd path sourcePath compression
|
|
|
Parameters
|
String path
The path of the file to use in the zip file.
fPath sourcePath
The path of the source file that is being added.
int compression
The compression level to use for the file. Values are in fZip-CompressionLevels.
|
|
Returns
|
void. None.
|
|
fileDelete path
|
|
|
Parameters
|
String path
The path of the file to delete from the zip file.
|
|
Returns
|
void. None.
|
|
fileRename from to
|
|
|
Parameters
|
String from
The name of the file in the zip to rename.
String to
The name the file should be renamed to.
|
|
Returns
|
void. None.
|
|
folderAdd path sourcePath compression
|
|
|
Parameters
|
String path
The path of the folder to use in the zip file.
fPath sourcePath
The path of the source folder that is being added.
int compression
The compression level to use for the files in the folder. Values are in fZip-CompressionLevels.
|
|
Returns
|
void. None.
|
|
folderCreate path
|
|
|
Parameters
|
String path
The path of the folder to use in the zip file.
|
|
Returns
|
void. None.
|
|
streamAdd path sourceStream compression
|
|
|
Parameters
|
String path
The path of the file to use in the zip file.
fStream sourceStream
The name of the source stream that is being added.
int compression
The compression level to use for the file. Values are in fZip-CompressionLevels.
|
|
Returns
|
void. None.
|