遍历文件 BAT

for /f "delims=" %%i in ('dir /b /a-d /s') do (
echo "%%i"
)



你可能感兴趣的:(遍历文件 BAT)