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

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -