|
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
|