编写批处理文件删除带有通配符的文件
我在同一个文件夹中设置了多个网站,我想创建一个批处理文件,该文件将删除每个网站中的缓存,而不必为每个网站添加新行。例如,我正在使用这个:
del /S /Q D:\www\site-name\cache\*
这有效,但我必须为 D:\www
中的每个站点添加一个新行。 del 命令不支持:
del /S /Q D:\www\*\cache\*
那么有什么更好的方法来做到这一点呢?
I have multiple websites set up in the same folder, and I want to create a batch file that will delete the cache in each of them without having to add a new line for each site. For example I am using this:
del /S /Q D:\www\site-name\cache\*
Which works, but I have to add a new line for every site in D:\www
. The del command doesn't support:
del /S /Q D:\www\*\cache\*
So what is a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这应该有效:
I think this should work: