Search found 1 match
- 29 Aug 2011 03:46
- Forum: DOS Batch Forum
- Topic: WinRAR command line to unzip files in multiple directories
- Replies: 0
- Views: 8322
WinRAR command line to unzip files in multiple directories
Hi Friends, I have created a batch file to unzip the zip files within multiple folders in a parent directory using WinRAR. @echo off FOR /D /r %%G in (*) DO if exist %%G\*.zip C:\progra~1\WinRAR\Winrar.exe e %%G\*.zip %%G\ pause exit How it works This works, and the files are extracted to the same f...