yashijoe Posted March 1, 2014 Posted March 1, 2014 Hi everybody out there, I'd like to compress multiple folders with cd ISOs inside in multiple 7z files. One 7z for each directory. And I'm using this batch: for /d %%X in (*) do 7z.exe a "%%X.7z" "%%X\" -mx=9 -ms=on -md=26 -mfb=256 The problem is that the 7z also contain the folder itself and daemon tool is not able to find the iso. Is there a way to avoid 7zip to do that? Of course I want to make 7z files and not zip ones. Thanks to experts that will help me!
brolly Posted March 1, 2014 Posted March 1, 2014 for /d %%X in (*) do 7z.exe a "%%X.7z" ".\%%X\*" -mx=9 -ms=on -md=26 -mfb=256
Recommended Posts
Archived
This topic is now archived and is closed to further replies.