I have a bunch of rar files some of which contain just the file or files and some have A directory structure
i'd like to create a bat file that can extract the rar with the directory as is & if no directory use the rar file name to create a directory & then extract to that off course handling any errors
so this cmd will output a list to a text file
C:\Program Files\WinRAR>UnRAR.exe l H:\temp\test.rar >H:\temp\test.txt
results in
UNRAR 4.20 freeware Copyright (c) 1993-2012 Alexander Roshal
Archive H:\temp\Test.rar
Name Size Packed Ratio Date Time Attr CRC Meth Ver
-------------------------------------------------------------------------------
Test.TXT 0 0 0% 20-11-12 18:44 .....A. 00000000 m0b 2.9
-------------------------------------------------------------------------------
1 0 0 0%
for a rar file without a directory structure and
UNRAR 4.20 freeware Copyright (c) 1993-2012 Alexander Roshal
Archive H:\temp\testDir.rar
Name Size Packed Ratio Date Time Attr CRC Meth Ver
-------------------------------------------------------------------------------
Test.TXT 0 0 0% 20-11-12 18:44 .....A. 00000000 m0b 2.9
test 0 0 0% 20-11-12 18:45 .D..... 00000000 m0 2.0
-------------------------------------------------------------------------------
2 0 0 0%
with a directory
I could create a perl script that will output this listing to a temp text file read it find / pattern match .D..... test if that directory exists & test if the files exits
then create another bath file to extract the files
But I was wondering if there was a simpler way?
Thanx