我已经开始使用dirent.h库,并且遇到了“ struct dirent”构造函数的一个非常有用的成员,该结构在我的书中构造了dirent * p-> d_name。但是不幸的是,它没有声明该结构的任何其他成员;
我想知道这个结构的成员还有什么用?
问候
该结构struct dirent是指目录条目。
struct dirent
http://www.gnu.org/software/libc/manual/html_node/Directory- Entries.html
在linux中,它定义为:
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 file system types */ char d_name[256]; /* filename */ };
参考: man readdir
man readdir
或者只是在包含目录中查找“ dirent.h”。