View Single Post
  #2  
Old 05-05-2008, 09:16 PM
grandpakewl grandpakewl is offline
Junior Member
 
Join Date: May 2008
Location: VA, USA
Posts: 1
winrar

Not sure if you are still looking for an answer, but I found that most of the archives start with something like ***.part01.rar or ***.part1.rar. I changed the line in the script:

for /F %%i in ('dir /s/b *.rar') do call :do_extract "%%i"

to:

for /F %%i in ('dir /s/b *part01.rar') do call :do_extract "%%i"

or

for /F %%i in ('dir /s/b *part1.rar') do call :do_extract "%%i"

That seemed to do the trick or stopping the repeated extracts but it still created a bunch of empty directories. Better than nothing I suppose...

Enjoy
Reply With Quote