When using 7Zip to extract a zip file, it always creates a subdirectory I want to avoid to create.
The zip file:
C:\Test.zip
The content files in zip file:
`ReadMe.txt`
The Commandline:
x "C:\Test.zip" -o"C:\" -y
The result:
C:\Test\ReadMe.txt
Should be:
C:\ReadMe.txt
Can anyone find out the argument to avoid creating the "Test" subdirectory?