如何在Windows CMD中删除目录中的所有文件和子目录而不删除目录?

发布于 2024-10-28 09:52:11 字数 149 浏览 2 评论 0原文

您好,我正在 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 技术交流群。

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

发布评论

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

评论(2

空宴 2024-11-04 09:52:11
for /d %x in (debug\*) do @rd /s /q "%x"
del /s /f /q debug\*
for /d %x in (debug\*) do @rd /s /q "%x"
del /s /f /q debug\*
猫弦 2024-11-04 09:52:11

对我来说似乎是这样:(

del /S /Q debug\*

不过,题外话,我使用的是 MinGW rm 命令,它的工作方式与 Linux 下相同。)

Seems to for me:

del /S /Q debug\*

(Though, off-topic, I'm using the MinGW rm command, which works just the same as under Linux.)

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