I have a zipped file with a filesFolder
I want to extract all the content of that directory without the directory root name
the command i tried:
7zG.exe x "zip.7z" -o"C:\location" "filesFolder\1" "filesFolder\2"
this gives me the following:
C:\location\filesFolder\1\*
C:\location\filesFolder\2\*
what i want is
C:\location\1\*
C:\location\2\*
The "e" command is not good since it disables all the inner order of the subfolders
What is the command i need? Thanks :)