Function to check that the archive command is a command that is supported by 7-Zip and the script.
Valid archive commands are:
Command | Meaning |
---|---|
a | Add file to archive |
u | Update file in archive |
var archivecommand = "a"; if(validArchiveCommand(archivecommand)) { file.zip("myarchive.zip", "tzip", 5, archivecommand); }
Parameter | Data type | Required | Description |
---|---|---|---|
archivecommand | string | True | The command to use for the archive |
Value | Meaning |
---|---|
true | The command is a valid archive command |
false | The command is not a valid archive command |