TheWaterProgrammer
TheWaterProgrammer

Reputation: 8269

Append another file to a zip

Is it possible to append a file to an existing zip archive?

zip my_archive.zip folder_to_zip
then how to add another file to my_archive.zip

Upvotes: 0

Views: 121

Answers (1)

martin clayton
martin clayton

Reputation: 78225

The default behaviour of zip is to add files:

zip zippy.zip *.sql
zip zippy.zip *.txt
zipinfo zippy.zip
    ... list of .sql and .txt files ...

Upvotes: 1

Related Questions