Last active
January 13, 2025 11:48
-
-
Save darragh-murphy/3991421b87bca6ce92796a245e596020 to your computer and use it in GitHub Desktop.
Compress all the subfolders in a folder
This file contains hidden or 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
| for /d %%i in (*) do "C:\Path\To\7z.exe" a "%%i.zip" "%%i\" | |
| for /d %i in (*) do "C:\Path\To\7z.exe" a "%i.zip" "%i\" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment