Created
November 24, 2017 09:54
-
-
Save netravnen/ae358b858c060b483a04baa33d5e6881 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Archive files in current dir into seperate 7z archives | |
:: and delete archives files afterwards. | |
:: | |
:: a: create archive | |
:: -t7z: use 7z format | |
:: -sdel: delete files after archiving | |
:: -mx9: use highest possible compression ration | |
:: -mmt: use multi-threading while archiving | |
:: -ms: create solid archive-file | |
FOR %%i IN (*.*) DO 7z.exe a -t7z -sdel -mx9 -mmt -ms "%%i.7z" "%%i" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment