linux

Linux readdir如何实现递归读取

小樊
36
2025-04-26 15:00:56
栏目: 智能运维

在Linux中,readdir函数用于读取目录中的条目。但是,readdir本身并不支持递归读取子目录。要实现递归读取,你需要自己编写一个递归函数来遍历目录结构。以下是一个简单的示例,展示了如何使用readdiropendir函数递归地读取目录及其子目录中的所有文件:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
#include <sys/stat.h>

void list_directory_contents(const char *path) {
    DIR *dir;
    struct dirent *entry;
    struct stat path_stat;

    dir = opendir(path);
    if (!dir) {
        perror("opendir");
        return;
    }

    while ((entry = readdir(dir)) != NULL) {
        if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
            continue;
        }

        snprintf(path_stat.path, sizeof(path_stat.path), "%s/%s", path, entry->d_name);
        if (stat(path_stat.path, &path_stat) == -1) {
            perror("stat");
            continue;
        }

        if (S_ISDIR(path_stat.st_mode)) {
            printf("Directory: %s\n", path_stat.path);
            list_directory_contents(path_stat.path);
        } else {
            printf("File: %s\n", path_stat.path);
        }
    }

    closedir(dir);
}

int main(int argc, char *argv[]) {
    if (argc != 2) {
        fprintf(stderr, "Usage: %s <directory>\n", argv[0]);
        return EXIT_FAILURE;
    }

    list_directory_contents(argv[1]);
    return EXIT_SUCCESS;
}

这个程序接受一个目录路径作为参数,并递归地列出该目录及其所有子目录中的文件。请注意,这个示例没有处理符号链接、权限问题和其他可能的错误情况。在实际应用中,你可能需要根据具体需求对其进行修改和扩展。

0
看了该问题的人还看了