免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 13387 | 回复: 1
打印 上一主题 下一主题

[C] linux下dirent结构d_type成员说明 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-10-22 11:05 |只看该作者 |倒序浏览
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各代表什么?哪里可以看到详细的说明?
谢谢!

论坛徽章:
1
午马
日期:2013-12-19 13:55:53
2 [报告]
发表于 2012-10-22 13:09 |只看该作者
man  getdents
我的是fedora 13  里面没有 DT_WHT
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP