#include <sys/types.h>
#include <sys/stat.h>
int stat(const char *filename //文件或者文件夹的路径
, struct stat *buf //获取的信息保存在内存中
); //! prototype,原型
正确返回0,错误返回-1
其中使用到的结构体:
struct stat
{
dev_t st_dev; /* ID of device containing file -文件所在设备的ID*/
ino_t st_ino; /* inode number -inode节点号*/
mode_t st_mode; /* protection -保护模式?*/
nlink_t st_nlink; /* number of hard links -链向此文件的连接数(硬连接)*/
uid_t st_uid; /* user ID of owner -user id*/
gid_t st_gid; /* group ID of owner - group 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 -系统块的大小*/
blkcnt_t st_blocks; /* number of blocks allocated -文件所占块数*/
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 - */
};
文件属性操作函数:
#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)
成功返回0,出错返回-1;
功能:返回一个与pathname或fd指定的文件属性信息,存储在结构体buf中

本文详细介绍了文件属性操作函数stat、fstat及lstat的用法,包括如何通过这些函数获取文件的各种属性信息,如文件大小、创建时间等,并解释了它们返回的结构体中的各个字段含义。
1901

被折叠的 条评论
为什么被折叠?



