
| Quote: | |
|
CODE: [Copy to clipboard]参数1:开始日期@echo off
if "%1" == "" goto :error
set dateEnd=%2
if "%dateEnd%" == "" set dateEnd=%date:~0,10%
set strFileType=%3
if "%strFileType%" == "" set strFileType=*.*
for /r %4 %%i in (%strFileType%) do if %%~ti gtr %1 if %%~ti lss %dateEnd% echo %%~ti %%i | sort
goto :end
:error
echo 参数不正确!
:end
pause
| Quote: | |
|

| Quote: | |
|
| 欢迎光临 中国DOS联盟论坛 (http://cndos.fam.cx/forum/) | Powered by Discuz! 2.5 |