Hello
I was hoping someone in here could help me with this problem:
I need to zip folders in a bunch of sub-folders.
Example:
How it should be:
Spoiler:
Root
Folder01
SubFolder 1.zip
Subfolder 2.zip
Subfolder 3.zip
Folder02
SubFolder 1.zip
Subfolder 2.zip
I'm not that good with coding, but following a guide I managed to create this:
Code:
for /d %%X in (*) do "c:\Program Files\7-Zip\7z.exe" a "%%X.zip" "%%X\"
That zip's whatever's in the folder where it's placed, but I need it to go a level deeper like in the example above.
I know I can move it and run it separately in all the folders, but there are 3.000+ folders with 1.000.000+ subfolders distributed across.
I hope I make sense and someone can help me.
Thanks so much in advance.