This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
misc:validarchivecommand [2017/05/25 14:18] willam |
misc:validarchivecommand [2020/02/26 17:10] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== validArchiveCommand() ====== | ||
+ | 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 | | ||
+ | |||
+ | ===== Usage ===== | ||
+ | <code javascript> | ||
+ | var archivecommand = "a"; | ||
+ | if(validArchiveCommand(archivecommand)) { | ||
+ | file.zip("myarchive.zip", "tzip", 5, archivecommand); | ||
+ | } | ||
+ | </code> | ||
+ | |||
+ | ===== Parameters ===== | ||
+ | ^ Parameter ^ Data type ^ Required ^ Description ^ | ||
+ | | archivecommand | string | True | The command to use for the archive | | ||
+ | |||
+ | ===== Return Values ===== | ||
+ | ^ Value ^ Meaning ^ | ||
+ | | true | The command is a valid archive command | | ||
+ | | false | The command is not a valid archive command | |