如何用DOS批处理命令修改文件名并加入当前时间

2024-12-23 00:42:45
推荐回答(1个)
回答1:

@echo off
set new=%time::=%
ren 1.txt %new:~0,4%_1.txt
exit

加上秒,第三行改为:
ren 1.txt %new:~0,6%_1.txt
加上微秒,改为:
ren 1.txt %new:~0,8%_1.txt