cmd - How to unzip a file to the exact path using 7z.exe? -


i running following command line,

7z.exe e "d:/file.zip" 

it unzip file in same path.

but, requirement , need set path need extract file.

for example,

i need extract d:/file.zip in c:/folder/

i tried running command,

7z.exe e "d:/file.zip" "c:/folder/" 

it fails, so, pls me guys. of in advance.

run 7z.exe -? see available parameters. use -o specify folder zip file should extracted:

7z.exe x c:\temp\temp.zip -oc:\temp\myfolder 

Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -