标签:
DIR结构体类似于FILE,是一个内部结构
struct dirent{
ino_t d_ino; /*inode number*/
off_t d_off; /*offset to the next dirent*/
unsigned short d_reclen; /*length of this record*/
unsigned char d_type ; //type of file;not supported by all the file system types;
char d_name[256]; //filename
}
标签:
原文地址:http://www.cnblogs.com/guangliang/p/4417298.html