我的任务是将所有.txt文件从Program Files文件夹及其所有子目录复制到我创建的另一个文件夹。我有的脚本:
xcopy c:\"program files"\*\*.txt c:\temp\myfiles\lessons
不想工作。我错过了什么?
答案 0 :(得分:10)
如果要维护文件夹结构,
xcopy /s "c:\program files\*.txt" c:\temp\myfiles\lessons
如果没有,
for /r "c:\program files" %a in (*.txt) do @copy /y "%a" c:\temp\myfiles\lessons