根据文件夹结构按类型复制文件

根据文件夹结构按类型复制文件

我有一棵很大的文件树,就像

folderA
  folderB
    file.any
    file.txt
  folderC
  folderD
    folderE
      file.txt
      file.any

我需要复制所有 *.txt 文件和文件夹树。如何在 Windows 8 中执行此操作?是否有一些 cmd 命令或任何应用程序?

我需要的结果:

folderA
  folderB
    file.txt
  folderD
    folderE
      file.txt

答案1

xcopy在 CMD shell 中使用,例如:

xcopy /s {source-dir}\*.txt {target-dir}\

如果您想保留完整的目录结构,即使源中没有 *.txt 文件/e也会创建空目录。

相关内容