在 CentOS 系統中,readdir
是一個用于讀取目錄內容的函數,它可以處理子目錄。要使用 readdir
處理子目錄,你需要遵循以下步驟:
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
DIR *dir = opendir(path);
if (dir == NULL) {
perror("opendir");
exit(EXIT_FAILURE);
}
其中 path
是你要打開的目錄的路徑。
使用 readdir
函數讀取目錄中的每個條目。這個函數返回一個指向 struct dirent
結構的指針,該結構包含有關目錄條目的信息。
struct dirent *entry;
while ((entry = readdir(dir)) != NULL) {
// 處理目錄條目
}
要處理子目錄,你可以檢查 struct dirent
結構中的 d_type
字段。如果 d_type
的值為 DT_DIR
,則表示該條目是一個目錄。然后,你可以使用 strcmp
函數檢查子目錄的名稱是否為你感興趣的子目錄(例如 “subdir”)。
if (entry->d_type == DT_DIR) {
char path_with_subdir[PATH_MAX];
snprintf(path_with_subdir, sizeof(path_with_subdir), "%s/%s", path, entry->d_name);
if (strcmp(entry->d_name, "subdir") == 0) {
// 處理子目錄
}
}
在完成目錄遍歷后,使用 closedir
函數關閉目錄。
closedir(dir);
這是一個完整的示例,展示了如何使用 readdir
處理子目錄:
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[]) {
if (argc != 2) {
fprintf(stderr, "Usage: %s <directory>\n", argv[0]);
return EXIT_FAILURE;
}
const char *path = argv[1];
DIR *dir = opendir(path);
if (dir == NULL) {
perror("opendir");
return EXIT_FAILURE;
}
struct dirent *entry;
while ((entry = readdir(dir)) != NULL) {
if (entry->d_type == DT_DIR) {
char path_with_subdir[PATH_MAX];
snprintf(path_with_subdir, sizeof(path_with_subdir), "%s/%s", path, entry->d_name);
if (strcmp(entry->d_name, "subdir") == 0) {
printf("Found subdirectory: %s\n", path_with_subdir);
// 在這里處理子目錄
}
}
}
closedir(dir);
return EXIT_SUCCESS;
}
編譯并運行此程序,傳入一個目錄路徑作為參數。程序將查找名為 “subdir” 的子目錄并打印其路徑。你可以根據需要修改此程序以處理其他子目錄或執行其他操作。