#rem 列出子目录文件绝对路径名到aa.txt
dir "E:\IBM\BB\" /b /s >aa.txt
循环读取文件并copy到指定目录
for /f "delims=" %%i in (aa.txt) do copy "%%i" E:\IBM\BB\
pause
本文共 182 字,大约阅读时间需要 1 分钟。
#rem 列出子目录文件绝对路径名到aa.txt
dir "E:\IBM\BB\" /b /s >aa.txt
循环读取文件并copy到指定目录
for /f "delims=" %%i in (aa.txt) do copy "%%i" E:\IBM\BB\
pause
转载于:https://blog.51cto.com/luck888han/1673929