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
Post a Comment