ASKER
ASKER
ASKER
Batch files are text files containing a script of commands that are executed by the command interpreter on DOS, OS/2 and Windows systems. Most commonly, they are used to perform a series of functions that are repeated -- copying a set of files created daily with one step, for example.
TRUSTED BY
for /r c:\ %%a in (.) do (
if not /i [%done%]==[y] call :process %%~ta
)
goto :eof
:process
set dt=%1
if [%dt%]==[%date%] (
copy %0 c:\created.txt
set done=y
)