在 Linux 下,opendir
函數本身并不支持遞歸遍歷目錄。要實現遞歸目錄遍歷,你需要結合 opendir
、readdir
和 closedir
函數,并使用遞歸函數來處理子目錄。以下是一個簡單的示例:
#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)) {
list_directory_contents(path_stat.path);
} else {
printf("%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;
}
這個程序接受一個目錄路徑作為參數,并遞歸地列出該目錄下的所有文件和子目錄。注意,這個程序沒有處理符號鏈接,可能會導致無限遞歸。要處理符號鏈接,你需要檢查 entry->d_type
是否為 DT_LNK
,并相應地處理。
編譯并運行這個程序:
gcc -o list_directory_contents list_directory_contents.c
./list_directory_contents /path/to/directory
將 /path/to/directory
替換為你想要遍歷的目錄路徑。