1. 程式人生 > 其它 >遍歷檔案系統

遍歷檔案系統

DIR結構體:

struct __dirstream
{
  void *__fd;
  char *__data;
  int __entry_data;
  char *__ptr;
  int __entry_ptr;
  size_t __allocation;
  size_t __size;
  __libc_lock_define (, __lock)
};

typedef struct __dirstream DIR;

DIR結構體類似FILE,是檔案系統內部結構,這表示獲取到DIR結構體不要直接用,一般作為函式引數使用,比如:

struct dirent* readdir(DIR* dir);

 

struct dirent

struct dirent{

  long d_ino; /* inode number 索引節點號 */

  off_t d_off; /* offset to this dirent 在目錄檔案中的偏移 */  

  unsigned short d_reclen; /* length of this d_name 檔名長 */

  unsigned char d_type; /* the type of d_name 檔案型別 */

  char d_name [NAME_MAX+1]; /* file name (null-terminated) 檔名,最長255字元 */

}

使用方法:

while(NULL != (entry = readdir(dir))) {  // 會自動往後偏移

  if (DT_DIR == entry->d_type) {}  // 資料夾

  else if (DT_REG == entry->d_type) {}  // 檔案

}

 

遍歷檔案系統(虛擬碼):

void ls_dir_recursive(const char*name) {

  DIR* dir = open(name);

 

  struct dirent* entry = NULL;

  while (NULL != (entry = readdir(dir))) {

    if ("." == entry->d_name || ".." == entry->d_name) {  // c語言用strcmp

      continue;

    }

    else if (DT_DIR == ebtry->d_type) {    // DIR

      full_name = name + entry->d_name;  // 相對於可執行檔案的絕對路徑

      ls_dir_recursive(full_name);     // 遞迴

    }

    else if (DT_REG == entry->d_type) {   // FILE

      printf(entry->name);

    }

  }

}