Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个批处理脚本,我必须在其中删除文件夹的内容,而不删除文件夹本身。我尝试使用
del "."
但它会在此时停止批处理脚本,询问我是否确定删除。我不想要任何提示。有没有更简单的方法可以安静地做到这一点?
del /q "."
/q:安静模式,不询问是否可以删除全局通配符
与大多数命令一样,您可以使用del /?来查看此类选项。
del /?