如何将文件添加到 zip 文件夹内

如何将文件添加到 zip 文件夹内

如何将不在根文件夹中的文件/文件夹添加到 zip 文件中?例如

test.zip\父测试文件夹\folder1

我想在 zip 文件的 \folder1 中添加 test1.txt?

我正在使用 ubuntu 22.04 和 windows 10 x64 enterprise

答案1

  1. 创建与 zip 相同的文件夹结构mkdir -p "parent test folder/folder1"
  2. 将文件放入所需文件夹cp file "parent test folder/folder1"
  3. 将文件添加到 zip:zip -g xxx.zip "parent test folder/folder1/file"

更多关于此事这里

相关内容