16
3
I'm using the 7-Zip commandline to extract a ZIP archive called abc.zip
which is an archive with a folder called 'zipper' with three text files in it (a.txt
, b.txt
, and c.txt
).
My problem is when I extract it with the following command:
7z e C:\abc\abc.zip -y oC:\abc
7-Zip extracts everything, but it doesn't extract the folder 'zipper', it just extracts a.txt
, b.txt
and c.txt
and puts them in the output destination (that is, C:\abc
).
How can I make 7-Zip just extract the actual folder?
+1 thought the switch -e would be sufficient. – contactmatt – 2020-02-19T02:51:53.943