zip_file
The zip_file
method zips the supplied path (file or directory). It overwrites the output file only if you set the optional overwrite
argument to true
.
Syntax
zip_file( path [, overwrite] )
Arguments
Argument | Description |
---|---|
path
|
(string) The path or filename of the file or folder to zip. |
overwrite
|
(boolean) A boolean that specifies whether to force the creation of the zip file if an output file already exists. The default is false . |
Returns
(Boolean). Returns a Boolean indicating success or failure. On success writes a file called path.zip
.