gpt4 book ai didi

c - 在 C 中确定文件/文件夹

转载 作者:太空宇宙 更新时间:2023-11-04 01:36:14 24 4
gpt4 key购买 nike

我在 C 中有以下代码:

DIR *mydir = opendir("/");
struct dirent *entry = NULL;

while((entry = readdir(mydir)))
{
printf("%s\n", entry->d_name);
//printf("%i\n", entry->d_type);
}

closedir(mydir);

它可以正常工作并正确显示该位置的文件/文件夹。

但是,我想告诉它是文件夹还是文件。我怎样才能做到这一点?我尝试使用 d_type(如您在代码中看到的那样)但没有成功。

最佳答案

使用stat() :

struct stat st;
stat("nodename", &st);
int isDirectory = S_ISDIR(st.st_mode);

关于c - 在 C 中确定文件/文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13868994/

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