试图在makefile中删除文件夹时的错误

发布于 2025-02-10 03:05:04 字数 244 浏览 0 评论 0原文

您好,试图删除文件夹时遇到了错误。在我写的makefile中,我

cmd //c del bin/debug/res

给了我一个错误:

'es' is not recognized as an internal or external command,
operable program or batch file

我是新手。

谢谢

Hello i encountered an error when trying to delete a folder. In my makefile i wrote:

cmd //c del bin/debug/res

and it gave me the error:

'es' is not recognized as an internal or external command,
operable program or batch file

I'm new to makefiles.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

孤独岁月 2025-02-17 03:05:04

del用于删除文件。要删除文件夹,请使用rmdir

请注意,您只能删除空的文件夹,因此,如果文件夹不是空的,则应使用del /s < /code>,然后使用rmdir /s < /code>。 /s标志还将处理子文件夹。

DEL is for deleting files. To delete folders use RMDIR.

Note that you can only delete folders that are empty, so if the folder is not empty you should use DEL /S followed by RMDIR /S. The /S flag is to also handle subfolders.

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