在 CentOS 系統中,使用 readdir
函數讀取目錄內容時,可以通過編程的方式排除某些文件
以下是一個使用 C 語言編寫的示例,展示了如何在讀取目錄時排除名為 “.gitignore” 和 “temp” 的文件:
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <string.h>
int main() {
DIR *dir;
struct dirent *entry;
dir = opendir(".");
if (dir == NULL) {
perror("opendir");
exit(EXIT_FAILURE);
}
while ((entry = readdir(dir)) != NULL) {
// 排除名為 ".gitignore" 和 "temp" 的文件
if (strcmp(entry->d_name, ".gitignore") != 0 && strcmp(entry->d_name, "temp") != 0) {
printf("%s\n", entry->d_name);
}
}
closedir(dir);
return 0;
}
編譯并運行此程序,它將列出當前目錄下的所有文件,但不會顯示 “.gitignore” 和 “temp” 文件。
如果你使用的是其他編程語言,可以根據該語言的文件操作庫實現類似的邏輯。關鍵在于在遍歷目錄時檢查文件名,并根據需要跳過要排除的文件。