如何将文件从一个文件夹复制到另一个文件夹,同时排除某些文件类型?
我正在使用Windows Vista。
我有一个包含许多文件和子文件夹的文件夹。
我需要将该文件夹的内容复制到另一个文件夹,而不包含任何扩展名为 .txt 的文件。
我该怎么做?
I am using windows vista.
i have a folder containing many files and subfolders.
i need to copy the contents of that folder to another without including any files of the extension .txt.
how do i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用xcopy。。然后提供
/EXCLUDE:file1[+file2][+file3]...
选项以排除.txt
文件you can use xcopy.. Then provide the
/EXCLUDE:file1[+file2][+file3]...
option to exclude.txt
files在 Windows Vista 及更高版本上,您可以使用 Robocopy 工具,这是一个功能更强大的复制命令,可让您执行自己的任务。
对于 Windows XP,可以从 MS 下载 此处
我建议您运行
robocopy /?
来查看选项并查看 /XFOn Windows Vista and further you have the tool Robocopy, a more powerful copy command which allows you to perform tasks as yours
For windows XP can be downloaded from MS from here
I suggest you running
robocopy /?
to see the options and take a look at /XF