I would like to write a bat script to do the following:
Use 7 Zip to extract files from an existing zip file, into a folder by the same name as the original zip file (bar the .zip extension), and keeping the file & directory structure that was contained in the zip file.
I can extract all the same files into the current directory, by using
"C:\Program Files (x86)\7-Zip\7z.exe" e myZipFile.zip
7-zip.chm
in program files folder of 7-Zip - and read in help on tab Contents the pages listed under list item Command Line Version. The commandse
andx
are both explained in help as well as all other commands and switches. You would have just needed to read the help. – Fingertip