So here's my problem. I've got a file folder with just over a thousand files in it, and I need to compress these files into individual .zip files. These are roms to be used for emulation. I thought I could use a simple batch file, but the batch file doesn't seem to do anything, nor does trying the command itself in a command prompt.
I'm using 7zip as my compression software of choice.
The batch file I'm trying is:
for /d %%X in (*) do "c:\Program Files\7-Zip\7z.exe" a "%%X.zip" "%%X\"
However, nothing seems to happen. Trying to run this same command in command prompt (with single %) also seems to do nothing. No error given, just... nothing happens. I really don't want to have to go through and zip each of these individually
I'm using 7zip as my compression software of choice.
The batch file I'm trying is:
for /d %%X in (*) do "c:\Program Files\7-Zip\7z.exe" a "%%X.zip" "%%X\"
However, nothing seems to happen. Trying to run this same command in command prompt (with single %) also seems to do nothing. No error given, just... nothing happens. I really don't want to have to go through and zip each of these individually