41348934 当前离线
列兵
for /f "delims=" %%a in ('dir /a-d /b "%seekdir%\" ^|findstr /i "\.tmp$"') do ( set tmp=%%a set r=%%a set rcv=%r:tmp=rcv%复制代码
ShowCode 当前离线
VIP1
setlocal enabledelayedexpansion for /f "delims=" %%a in ('dir /a-d /b "%seekdir%\"^|findstr /i "\.tmp$"') do ( set r=%%a set rcv=!r:tmp=rcv! echo,!rcv! )复制代码
TOP