stat()/lstat()/fstat函数
功能
获取文件属性
定义函数
-
函数原型:
int stat(const char *pathname, struct stat *buf); int lstat(const char *pathname, struct stat *buf); int fstat(int filedes, struct stat *buf);
-
函数返回值:
成功为:0
失败为:-1
struct stat {
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 */ 连到该文件的硬连接数目,刚建立的文件值为1
uid_t st_uid; /* user ID of owner */ 用户ID
gid_t st_gid; /* group ID of owner */ 组ID
dev_t st_rdev; /* device ID (if special file) */ (设备类型)若此文件为设备文件,则为其设备编号
off_t st_size; /* total size, in bytes */ 文件字节数(文件大小)
blksize_t st_blksize; /* blocksize for filesystem I/O */ 块大小(文件系统的I/O 缓冲区大小)
blkcnt_t st_blocks; /* number of 512B blocks allocated */ 块数
/* Since Linux 2.6, the kernel supports nanosecond
precision for the following timestamp fields.
For the details before Linux 2.6, see NOTES. */
struct timespec st_atim; /* time of last access */ 最后一次访问时间
struct timespec st_mtim; /* time of last modification */ 最后一次修改时间
struct timespec st_ctim; /* time of last status change */ 最后一次改变时间(指属性)
#define st_atime st_atim.tv_sec /* Backward compatibility */
#define st_mtime st_mtim.tv_sec
#define st_ctime st_ctim.tv_sec
};
文件类型:
st_mode & S_IFMT 0170000 文件类型的位遮罩 | 文件类型 |
---|---|
S_IFSOCK 0140000 | 套接字文件(s) |
S_IFLNK 0120000 | 链接文件(l) |
S_IFREG 0100000 | 一般文件(-) |
S_IFBLK 0060000 | 块设备文件(b) |
S_IFDIR 0040000 | 目录文件(d) |
S_IFCHR 0020000 | 字符驱动文件© |
S_IFIFO 0010000 | 管道文件§ |
文件访问权限:
st_mode && (1<<n) | 说明 |
---|---|
S_ISUID 04000 11(bit位) | 文件的(set user-id on execution)位 |
S_ISGID 02000 10(bit位) | 文件的(set group-id on execution)位 |
S_ISVTX 01000 9(bit位) | 文件的sticky位 |
S_IRUSR(S_IREAD) 00400 8(bit位) | 文件所有者具可读取权限 |
S_IWUSR(S_IWRITE)00200 7(bit位) | 文件所有者具可写入权限 |
S_IXUSR(S_IEXEC) 00100 6(bit位) | 文件所有者具可执行权限 |
S_IRGRP 00040 5(bit位) | 用户组具可读取权限 |
S_IWGRP 00020 4(bit位) | 用户组具可写入权限 |
S_IXGRP 00010 3(bit位) | 用户组具可执行权限 |
S_IROTH 00004 2(bit位) | 其他用户具可读取权限 |
S_IWOTH 00002 1(bit位) | 其他用户具可写入权限 |
S_IXOTH 00001 0(bit位) | 其他用户具可执行权限 |
stat 和 lstat 差别
当遇到符号链接文件时:
- stat : 只能对符号链接文件睁一只眼闭一只眼,直接去处理链接所指文件
- lstat: stat返回的是该符号链接本身的信息