需要从C中的文件列表中删除目录

时间:2010-11-24 14:15:16

标签: c unix file

我遇到了问题,因为我需要获取目录中的文件列表。使用此previous StackOverflow question作为基础,我目前已获得此代码:

void get_files(int maxfiles) {
    int count = 0;
    DIR *dir;
    struct dirent *ent;
    dir = opendir(DIRECTORY);
    if (dir != NULL) {

        /* get all the files and directories within directory */
        while ((ent = readdir(dir)) != NULL) {
            if (count++ > maxfiles) break;

            printf("%s\n", ent->d_name);
        }
        closedir(dir);
    } else {
        /* could not open directory */
        printf("ERROR: Could not open directory");
        exit(EXIT_FAILURE);
    }
}

现在它几乎完全符合我的要求,但问题是它还列出了目录和他的文件,我只想要文件条目。我可以做一个简单的修改吗?

3 个答案:

答案 0 :(得分:3)

您可以使用类似的代码过滤目录 this one

答案 1 :(得分:2)

POSIX定义fstat,可用于检查文件是否是目录。它还有一个宏来简化检查。
http://linux.die.net/man/2/fstat
请注意,对于Windows,您可能必须在此处使用Windows API。

答案 2 :(得分:0)

如果您的struct dirent包含非标准但广泛可用的d_type成员,则可以使用此成员过滤掉目录。值得选择使用它并且只返回到stat的系统上,因为使用d_type而不是stat可能会使你的目录列表快几十倍或几百倍。