Function to check whether the specified zip method is a supported zip method.
Valid methods are:
Method | Meaning |
---|---|
tz7b | 7z format |
tgzip | GZIP format |
tzip | ZIP format |
tbzip | BZIP2 format |
tiso | ISO format |
tudf | UDF format |
var zipmethod = "tzip"; if(validZipMethod(zipmethod)) { file.zip("myarchive.zip", zipmethod, 5, "a"); }
Parameter | Data type | Required | Description |
---|---|---|---|
method | string | True | The zip method to check |
Value | Meaning |
---|---|
true | The command is a valid zip method |
false | The command is not a valid zip method |