Chinaunix

标题: linux下dirent结构d_type成员说明 [打印本页]

作者: jack1007    时间: 2012-10-22 11:05
标题: linux下dirent结构d_type成员说明
linux下获取目录结构信息的dirent结构如下
  1. struct dirent {
  2.               ino_t          d_ino;       /* inode number */
  3.               off_t          d_off;       /* offset to the next dirent */
  4.               unsigned short d_reclen;    /* length of this record */
  5.               unsigned char  d_type;      /* type of file */
  6.               char           d_name[256]; /* filename */
  7.           };
复制代码
其中d_type在dirent.h中定义,代表linux下文件类型:
  1. #ifdef __USE_BSD
  2. /* File types for `d_type'.  */
  3. enum
  4.   {
  5.     DT_UNKNOWN = 0,
  6. # define DT_UNKNOWN     DT_UNKNOWN
  7.     DT_FIFO = 1,
  8. # define DT_FIFO        DT_FIFO
  9.     DT_CHR = 2,
  10. # define DT_CHR         DT_CHR
  11.     DT_DIR = 4,
  12. # define DT_DIR         DT_DIR
  13.     DT_BLK = 6,
  14. # define DT_BLK         DT_BLK
  15.     DT_REG = 8,
  16. # define DT_REG         DT_REG
  17.     DT_LNK = 10,
  18. # define DT_LNK         DT_LNK
  19.     DT_SOCK = 12,
  20. # define DT_SOCK        DT_SOCK
  21.     DT_WHT = 14
  22. # define DT_WHT         DT_WHT
  23.   };
复制代码
其中DT_UNKNOWN, 和最后的DT_WHT各代表什么?哪里可以看到详细的说明?
谢谢!
作者: smarter_feng    时间: 2012-10-22 13:09
man  getdents
我的是fedora 13  里面没有 DT_WHT




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2