penzhq 当前离线
列兵
terse 当前离线
中将
TOP
dir /b /s !ext:.^= %%a\%%b.!复制代码
dir /b /s !ext:.^= %%a\%%b.! 2^>nul'复制代码
@echo off&setlocal enabledelayedexpansion set "ext=.mpg.evb.wma.st" for %%a in (c: d: e: f: g: h: i: j:) do ( for /f "tokens=*" %%b in (aa.txt) do ( for /f "tokens=*" %%c in ('dir /b /s !ext:.^= %%a\%%b.! 2^>nul'') do ( COPY "%%c" "w:\" >nul ) ) ) pause复制代码
@echo offfor /f "delims=" %%a in (b\aa.txt) do (copy /t "%%a" b)echo end...pause复制代码