hlzj88 当前离线
少校
for /f "delims=" %%i in ('dir /b /on "txt\*.txt"') do echo %%i %%~ni %%~ziCOPY
评分人数
77七 当前离线
中校
for /f "delims=" %%i in ('dir /b /a-d *.txt') do echo %%iCOPY
TOP
@echo off>100119859674.txt echo 123for /f "delims=" %%i in ('dir /b /on "txt\*.txt"') do echo %%i %%~ni %%~zipauseCOPY
@echo offmd test>test\t.t echo 123>t.t echo 123456for /f "delims=" %%i in ('dir /b /a-d "test\*.t"') do ( rem 扩展工作目录下的t.t echo %%~dpi echo %%~zi for %%a in ("test\%%i") do ( rem 扩展test目录下的t.t echo %%~dpa echo %%~za ))pauseCOPY
aloha20200628 当前在线
for /f "delims=" %i in ('dir /b "*.txt" ') do echo %i %~ni %~ziCOPY
for /f "delims=" %i in ('dir /b/s "\txt\*.txt" ') do echo %i %~ni %~ziCOPY
@echo off &set "d=d:\tmp\txt"cd /d "%d%"for /f "delims=" %%i in ('dir /b "*.txt" ') do echo,%%i %%~ni %%~zicd ..for /f "delims=" %%i in ('dir /b/s "txt\*.txt" ') do echo,%%i %%~ni %%~zipause&exit/bCOPY
Five66 当前离线
上尉
buyiyang 当前离线
中尉
for /f "delims=" %%i in ('dir /b /on "txt\*.txt"') do echo,%%~dpi---%%~fiCOPY
for %%i in ("txt\*.txt") do echo,%%~dpi---%%~fiCOPY