使用 Windows 命令提示符删除文件

发布于 2025-01-03 20:53:32 字数 146 浏览 1 评论 0原文

我的 D 驱动器中有一个名为 works 的共享文件夹 (D:\works)。我需要删除该文件夹和子文件夹中的所有文件除了其中的 word 和 excel 文件。我该怎么做?

There is a shared folder in my D drive as works (D:\works). I need to delete all the files in that folder and sub folders except word and excel files in there. how can i do this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乱了心跳 2025-01-10 20:53:32

您可以执行类似于此人所做的操作: http://www.codesingh.com/2009/08/using-robocopy-to-delete-old-files-from.html

这样的东西应该有效:

mkdir D:\_tempDelete
robocopy D:\works D:\_tempDelete /e /MOVE /XF *.xls* *.doc*
rmdir D:\_tempDelete /s /q

只要你有在 D: 上创建和删除文件夹的权限。否则,您可以将文件移动到本地驱动器上的某个位置,然后从那里删除它们。

You could do something similar to what this guy's done: http://www.codesingh.com/2009/08/using-robocopy-to-delete-old-files-from.html

Something like this should work:

mkdir D:\_tempDelete
robocopy D:\works D:\_tempDelete /e /MOVE /XF *.xls* *.doc*
rmdir D:\_tempDelete /s /q

Provided you have permissions to create and delete folders on D:. Otherwise you could just move the files somewhere on your local drive and delete them from there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文