使用xcopy复制所有子文件夹中的所有txt文件

时间:2015-09-30 16:25:44

标签: command-prompt xcopy

我的任务是将所有.txt文件从Program Files文件夹及其所有子目录复制到我创建的另一个文件夹。我有的脚本:

xcopy c:\"program files"\*\*.txt c:\temp\myfiles\lessons

不想工作。我错过了什么?

1 个答案:

答案 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