Reputation: 341
So I know I can unzip a .zip file using
"C:\Program Files\7-Zip\7z.exe" e *.zip
but how do I do it so that I can choose which folder it will unzip it to?
Upvotes: 4
Views: 15653
Reputation: 21
example:
'"C:\Program Files\7-Zip\7z.exe" x *.zip -oc:\path\to\directory -aoa'
flags -aoa
are used to override the files.
Upvotes: 2