Skip to content

Commit

Permalink
feat: Add -mqs sort
Browse files Browse the repository at this point in the history
  • Loading branch information
q2s2t committed Nov 23, 2019
1 parent 68ec3eb commit 0540b42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,8 @@ In the 7-Zip world, command flags are called switches. In order to use them you
| `noArchiveOnFail` | `boolean` | Stop archive creating, if 7-Zip can't open some input file. | `-sse` |
| `noRootDuplication` | `boolean` | Eliminate duplication of root folder for extract command | `-spe` |
| `noWildcards` | `boolean` | Disable wildcard matching for file names | `-spd` |
| `ntSecurity` | `boolean` | Store NT security | `-sni` |
| `ntSecurity` | `boolean` | Store NT security | `-sni` |
| `sortByType` | `boolean` | Sort files by type while adding to solid 7z archive | `-mqs` |
| `openFiles` | `boolean` | Compress files open for writing | `-ssw` |
| `recursive` | `boolean` | Recurse subdirectories. For `-r0` usage see `raw` | `-r` |
| `symlinks` | `boolean` | Store symbolic links as links (WIM and TAR formats only) | `-snl` |
Expand Down
1 change: 1 addition & 0 deletions src/references.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const FLAGS = [
{ type: 'bool', api: 'timeStats', cli: 'bt' },
{ type: 'bool', api: 'toStdout', cli: 'so' }, // Write data to stdout
{ type: 'bool', api: 'yes', cli: 'y' }, // Assume Yes on all queries
{ type: 'bool', api: 'sortByType', cli: 'mqs' }, // Sort files by type while adding to solid 7z archive
{ type: 'boolContext', api: 'alternateStreamStore', cli: 'sns' }, // Store NTFS alternate Streams
{ type: 'boolContext', api: 'caseSensitive', cli: 'ssc' }, // Set Sensitive Case mode
{ type: 'string', api: 'archiveNameMode', cli: 'sa' }, // Set Archive name mode
Expand Down

0 comments on commit 0540b42

Please sign in to comment.