3

If I specify full extensionless result path 7zip adds one corresponding to the type of created archive. How can I make it name the result file exactly as I have specified in command line argument?

SerG
  • 451

1 Answers1

4

What is your command line?

When you want no extension you could use filename. as filename.
(Note the dot at the end)

"C:\Program Files\7-Zip\7z" a -tzip zip_filename. source_directory\*
Rik
  • 13,565