readdir如何实现目录的递归遍历
导读:readdir 函数本身并不能直接实现目录的递归遍历,它只能读取一个目录下的内容。要实现目录的递归遍历,你需要结合其他函数,如 opendir、closedir 和 readdir,并使用递归方法来处理子目录。 以下是一个使用 C 语言实现...
readdir
函数本身并不能直接实现目录的递归遍历,它只能读取一个目录下的内容。要实现目录的递归遍历,你需要结合其他函数,如 opendir
、closedir
和 readdir
,并使用递归方法来处理子目录。
以下是一个使用 C 语言实现的递归遍历目录的示例:
#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_path>
\n", argv[0]);
return EXIT_FAILURE;
}
list_directory_contents(argv[1]);
return EXIT_SUCCESS;
}
这个程序接受一个目录路径作为参数,并递归地列出该目录及其所有子目录中的文件和文件夹。注意,这个程序没有处理符号链接,如果目录中包含符号链接,可能会导致无限递归。要处理符号链接,你可以在调用 stat
之前检查 entry->
d_type
是否为 DT_LNK
,并相应地处理。
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: readdir如何实现目录的递归遍历
本文地址: https://pptw.com/jishu/716753.html