目录项结构-os实验任务书

时间:2024-05-12 12:15:09
【文件属性】:

文件名称:目录项结构-os实验任务书

文件大小:134KB

文件格式:PPT

更新时间:2024-05-12 12:15:09

os

目录项结构: struct dirent {           #ifndef __USE_FILE_OFFSET64 __ino_t d_ino; //此目录进入点的inode   __off_t d_off; //目录文件开头至此目录进入点的位移 #else __ino64_t d_ino; __off64_t d_off; #endif     unsigned  short  int  d_reclent;//d_name的长度     unsigned char   d_type; //d_name所指的文件类型           char   d_name[256]; //文件名     }; 注:需跳过两个目录项“.”和“..” 定义见/usr/include/dirent.h


网友评论