如何将不在根文件夹中的文件/文件夹添加到 zip 文件中?例如
test.zip\父测试文件夹\folder1
我想在 zip 文件的 \folder1 中添加 test1.txt?
我正在使用 ubuntu 22.04 和 windows 10 x64 enterprise
答案1
- 创建与 zip 相同的文件夹结构
mkdir -p "parent test folder/folder1"
- 将文件放入所需文件夹
cp file "parent test folder/folder1"
- 将文件添加到 zip:
zip -g xxx.zip "parent test folder/folder1/file"
更多关于此事这里