使用 Windows 命令提示符删除文件
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行类似于此人所做的操作: http://www.codesingh.com/2009/08/using-robocopy-to-delete-old-files-from.html
这样的东西应该有效:
只要你有在 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:
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.