将另一个文件附加到 zip
Append another file to a zip
是否可以将文件附加到现有的 zip 存档?
zip my_archive.zip folder_to_zip
then how to add another file to my_archive.zip
zip 的默认行为是添加文件:
zip zippy.zip *.sql
zip zippy.zip *.txt
zipinfo zippy.zip
... list of .sql and .txt files ...
是否可以将文件附加到现有的 zip 存档?
zip my_archive.zip folder_to_zip
then how to add another file to my_archive.zip
zip 的默认行为是添加文件:
zip zippy.zip *.sql
zip zippy.zip *.txt
zipinfo zippy.zip
... list of .sql and .txt files ...