gpt4 book ai didi

c - 如何检查目录是否存在?

转载 作者:IT老高 更新时间:2023-10-28 12:33:12 24 4
gpt4 key购买 nike

如何用 C 语言检查 Linux 上是否存在目录?

最佳答案

您可以使用 opendir()并检查 ENOENT == errno 是否失败:

#include <dirent.h>
#include <errno.h>

DIR* dir = opendir("mydir");
if (dir) {
/* Directory exists. */
closedir(dir);
} else if (ENOENT == errno) {
/* Directory does not exist. */
} else {
/* opendir() failed for some other reason. */
}

关于c - 如何检查目录是否存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12510874/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com