18831281895 当前离线
列兵
smss 当前离线
中尉
@Echo off&SetLocal EnableDelayedExpansion&set n=0 for /f "delims=" %%i in ('dir /ad/s/b/o-d *')do set /a n+=1&if not "%%~fi"==%0 if !n!==1 Echo "%%i" pause复制代码
TOP
flashercs 当前在线
中校
@echo off cd /d "%~dp0" set recent= for /f "delims=" %%A in ('dir /ad /b *^|sort /r') do ( set recent=%%A goto next ) :next echo recent="%recent%" pause exit /b复制代码