1 #pragma once 2 3 #include <common/sys/types.h> 4 struct dirent 5 { 6 ino_t d_ino; // 文件序列号 7 off_t d_off; // dir偏移量 8 unsigned short d_reclen; // 目录下的记录数 9 unsigned char d_type; // entry的类型 10 char d_name[]; // 文件entry的名字(是一个零长度的数组) 11 }; 12