gpt4 book ai didi

command-prompt - 使用 xcopy 从所有子文件夹复制所有 txt 文件

转载 作者:行者123 更新时间:2023-12-01 23:29:28 26 4
gpt4 key购买 nike

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

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

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

最佳答案

如果您想维护文件夹结构,

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

关于command-prompt - 使用 xcopy 从所有子文件夹复制所有 txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32871185/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com