我正在尝试编写一个批处理脚本,它将使用7zip
自动压缩文件夹根目录Folder
a.png
File1.jpg
File2.jpg
File3.jpg
index.html
home.html
我尝试了这段代码,但没有在根级别压缩。
for /d %%X in (*) do "c:\Program Files\7-Zip\7z.exe" a "%%X.zip" "%%X"
答案 0 :(得分:1)
试试这个
for / d %% X in(*)do(for / d %% a in(%% X)do(“C:\ Program Files \ 7-Zip \ 7z.exe”a -tzip“%% X.zip“”。\ %% a *“))
如果你想尝试更多选择 http://https403.blogspot.com/2014/09/batch-for-zip-files-and-folders-below.html