首页 > 解决方案 > 将另一个文件附加到 zip

问题描述

是否可以将文件附加到现有的 zip 存档中?

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

标签: macoszip

解决方案


zip 的默认行为是添加文件:

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

推荐阅读