mqq6015m 当前离线
列兵
Batcher 当前在线
管理员
@echo off set "U_Drive=X:\" set "SrcFolder=D:\aaaa" for /f %%i in ('type "Keyword.txt"') do ( for /f "delims=" %%j in ('dir /b "%SrcFolder%\*.csv" ^| findstr "%%i"') do ( copy "%SrcFolder%\%%j" "%U_Drive%" ) )复制代码
TOP