批处理怎么实现查找文件夹并将文件复制进去

如题所述

for /f "delims=" %%a in ('dir /ad /b /s d:\123') do (
   copy 123.txt "%%a"
)
pause
温馨提示:答案为网友推荐,仅供参考
相似回答