【发布时间】:2012-05-06 17:45:45
【问题描述】:
这是参考the structure for information about a file inode:
dev_t st_dev; /* ID of device containing file */
ino_t st_ino; /* inode number */
mode_t st_mode; /* protection */
nlink_t st_nlink; /* number of hard links */
uid_t st_uid; /* user ID of owner */
gid_t st_gid; /* group ID of owner */
dev_t st_rdev; /* device ID (if special file) */
off_t st_size; /* total size, in bytes */
time_t st_atime; /* time of last access */
time_t st_mtime; /* time of last modification */
time_t st_ctime; /* time of last status change */
blksize_t st_blksize; /* blocksize for filesystem I/O */
blkcnt_t st_blocks; /* number of blocks allocated */
我只是在寻找任何类型的答案。我注意到所有字段都以st_ 开头,在互联网上找不到很好的解释。
【问题讨论】:
-
表示它们包含
stat数据。