- @echo off&setlocal EnableDelayedExpansion
- rem 提取当日的日期
- for /f %%i in ("%date%") do (
- set cur_day=%%i
- )
-
- cd /d d:\srrb\
- for /f "tokens=1-3*" %%a in ('dir /a:-d /t^|findstr /b [0-9]') do (
- if "!cur_day!"=="%%a" copy "%%d" g:\aa\
- )
- pause
复制代码 建议你该批处理最好不要放在 d:\srrb\目录下,可能会出现错误。
好像还有一个xcopy /d 的命令可以满足你的要求,我暂时还没有尝试,你先试一下这个批处理行不行。 |