如何在Windows CMD中删除目录中的所有文件和子目录而不删除目录?
您好,我正在 Linux 中寻找与此命令类似的命令:
rm -fRv debug/*
此命令删除 debug 内的所有文件和目录,但不删除 debug 目录。
如何在 Windows 中使用 CMD 执行此操作?
再见
Hi I'm looking for a command similar to this command in Linux:
rm -fRv debug/*
This command delete all files and directories that is inside debug but without delete the debug directory.
How can I do this in Windows with CMD ?
bye
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我来说似乎是这样:(
不过,题外话,我使用的是 MinGW
rm
命令,它的工作方式与 Linux 下相同。)Seems to for me:
(Though, off-topic, I'm using the MinGW
rm
command, which works just the same as under Linux.)