使用命令行复制文件

时间:2017-04-17 12:23:25

标签: windows command-line cmd

我可以使用cmd

中的命令行复制文件及其所有子目录
  

xcopy / s c:\ users \ desktop f:\ desktopFiles

但是,我不想复制mp3或mp4等媒体文件。是否有命令行。谢谢!

1 个答案:

答案 0 :(得分:1)

使用您不想复制的扩展名创建文件,例如:

<强> excludedExtensions.txt

.mp4\
.mp3\

然后你可以使用:

xcopy /s /exclude:excludedExtensions.txt c:\users\desktop f:\desktopFiles

您可以阅读有关xcopy exclude here

的更多信息