gpt4 book ai didi

batch-file - xcopy 递归复制目录和子目录,并仅按扩展名过滤文件名

转载 作者:行者123 更新时间:2023-12-03 11:14:00 25 4
gpt4 key购买 nike

这是我现在所拥有的:

xcopy "c:\projects\SampleProject" "c:\temp\copytest" /E /H /EXCLUDE:elist.txt

除了按扩展名过滤文件名外,它可以完成我需要的所有工作。

例如:复制所有 *.exe来自 c:\temp\copytest 的文件和子目录。

怎么做?

最佳答案

我碰巧也需要这个,发现如果你想将特定类型的文件 xcopy 到一个新文件夹,保持当前文件夹结构,你只需要这样做

xcopy [SourcePath]*.mp3 [DestinationPath]  /sy

/s: Copies directories and subdirectories, unless they are empty. If you omit /s, xcopy works within a single directory.

/y : Suppresses prompting to confirm that you want to overwrite an existing destination file



Documentation

关于batch-file - xcopy 递归复制目录和子目录,并仅按扩展名过滤文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2952337/

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