仅当目录为空时,如何正确删除该目录?

发布于 2024-11-29 08:42:39 字数 126 浏览 0 评论 0原文

我想删除一个目录当且仅当它不包含文件时。

我目前正在检查目录中是否有 0 个文件系统条目,然后立即删除,但这留下了我想避免的边缘情况。像锁定目录之类的东西似乎就是这样。大多数文件系统可能不提供此功能,但也许有一些解决方法?

I would like to delete a directory if and only if it contains no files.

I'm currently checking for 0 file system entries within the directory then deleting right away, but that leaves an edge case that I would like to avoid. Something like locking the directory seems to be the way. Most filesystems probably don't offer this feature, but maybe there is some workaround?

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

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

发布评论

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

评论(2

绿光 2024-12-06 08:42:39

如果目录不为空 Directory.Delete 不会删除它并抛出 IOException

if directory is not empty Directory.Delete doesn't deletes it and throws IOException

向地狱狂奔 2024-12-06 08:42:39

When you use Directory.Delete(String) it will throw an IOException when your specified directory is not empty.

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