gpt4 book ai didi

batch-file - 在批处理脚本中压缩文件

转载 作者:行者123 更新时间:2023-12-03 16:32:01 24 4
gpt4 key购买 nike

我需要将一个文件压缩成 gunzip,这是通过下面的命令完成的

@回声关闭gzip -c C:\temp1\xx.out > C:\temp2\x2.out.gz

但我的要求是检查扩展名为 .out 的目录中的所有文件,并将每个文件压缩到 gunzip 文件中,并在压缩完成后删除相同的文件。请告诉我如何在批处理脚本中完成

最佳答案

   rem Pick up each file in C:\Temp1\ with .out extension.
for %%a in ("C:\temp1\*.out") do (

rem Compress the file to a file with the same name but .gz extension is added.
gzip -c %%a > %%a.gz

rem Delete the .out file which has been already compressed.
del /F /Q %%a
)

关于batch-file - 在批处理脚本中压缩文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20081906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com