windows - Recursive Unzipping with 7z.exe -
windows - Recursive Unzipping with 7z.exe -
i stumbled across below line means of extracting every .zip file in every subfolder.
for /f "usebackq" %a in (`dir /s /b *.zip`) 7z.exe e %a i've tried on winxp cmd.exe prompt , error:
"a unexpected @ time." can please tell me whats wrong above line. 7z.exe error or there wrong batch script syntax. did cutting , paste .bat file.
cheers
try alter %a %%a:
for /f "usebackq" %%a in (`dir /s /b *.zip`) 7z.exe e %%a windows batch-file unzip 7zip
Comments
Post a Comment