内容如题目所意,编写一个脚本来实现生成hex文件时自动添加时间信息作为文件名。
脚本内容:
@echo off
cd Wave_Ctr_V1\
set name=%1-
set old=%1.hex
set sysd=%date%
set syst=%time%
set year=%sysd:~0,4%
set mon=%sysd:~5,2%
set day=%sysd:~8,2%
set hour=%syst:~0,2%
if /i %hour% LSS 10 (
set hour=0%syst:~1,1%
)
set min=%syst:~3,2%
set sec=%syst:~6,2%
set new=%name%%year%%mon%%day%_%hour%%min%%sec%.hex
rename %old% %new%
相关设置如下图:
|