hawht 当前离线
列兵
DAIC 当前离线
中将
TOP
foxJL 当前离线
荣誉版主
@echo off for %%i in (c:\a.txt) do (set d=%%~ti) if %d:~,10% equ %date:~,10% (goto start) else (exit) :start echo,日期相同,继续执行代码 pause复制代码
foxJL 发表于 2013-11-7 09:15
@echo off for /f %%i in ('dir /tc c:\log\a.txt^|find "-"') do (set d=%%i) if %d:~,10% equ %date:~,10% (goto start) else (echo,日期不相同&pause&exit) :start echo,日期相同,继续执行代码 pause复制代码