stat,fstat,and lstat Functions

函数原型如下:

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

int stat(const char *pathname, struct stat *buf);
int fstat(int fd, struct stat *buf);
int lstat(const char *pathname, struct stat *buf);
//Return: 0 if OK
//        -1 on error

通过给定的pathname,stat返回相应文件信息的结构体。
fstat是获取已经打开的文件描述符fd所代指文件的信息
lstatstat是类似的,只不过当pathname所指的文件是symbolic link(符号链接)文件的时候,其返回的是symbolic link的信息,而不是其引用的文件的信息。

第二个参数是结构体指针。所有这些系统调用返回stat结构体,其中包含如下内容:

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 */
         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 */
         blksize_t st_blksize;     /* blocksize for filesystem 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
};

stat最大使用者就是ls -l命令,来了解关于文件的所有信息。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

猎羽

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值