unix环境高级编程/第四章----->文件和目录-------->函数stat、fstat、fstatat、lstat
函数stat、fstat、fstatat、lstat
这三个函数的功能是一致的,都用于获取文件相关信息,但应用于不同的文件对象。对于函数中给出pathname参数,stat函数返回与此命名文件有关的信息结构,fstat函数获取已在描述符fields上打开文件的有关信息,lstat函数类似于stat但是当命名的文件是一个符号链接时,lstat返回该符号链接的有关信息,而不是由该符号链接引用文件的信息。第二个参数buf是指针,它指向一个用于保存文件描述信息的结构,由函数填写结构内容。该结构的实际定义可能随实现有所不同.
用法:
#include int stat(const char *path, struct stat *buf); int fstat(int filedes, struct stat *buf); int lstat(const char *path, struct stat *buf);
参数: path:文件路径名。 filedes:文件描述词。 buf:是以下结构体的指针
struct stat{
mode_t st_mode; //(文件保护模式)文件类型和权限信息 结构体详解请参考此处
ino_t st_ino; //文件结点号
dev_t st_dev; //文件所在设备的文件系统标识号 device number (file system)
dev_t st_rdev; //文件所表示的特殊设备文件的设备标识 device number for special files
nlink_t st_nlink; //符号链接数
uid_t st_uid; //文件用户标识 用户ID
gid_t st_gid; //文件用户组标识 组ID
off_t st_size; // 总大小,字节为单位 size in bytes,for regular files
time_t st_st_atime; //文件内容最后访问的时间
time_t st_mtime; //文件内容最后修改时间
time_t st_ctime; //文件结构最后状态改变时间
blksize_t st_blksize; // 文件系统的最优I/O块大小 best I/O block size
blkcnt_t st_blocks; //分配给文件的块的数量,512字节为1单元 number of disk blocks allocated
};
文件类型信息包含在stat结构的st_mode成员中,可以用如下的宏确定文件类型,这些宏是stat结构中st_mode的成员.
文件类型:普通文件,目录文件,块特殊文件,字符特殊文件,套接字,FIFO,符号链接.
S_ISREG(); S_ISDIR(); S_ISBLK(); S_ISCHR(); S_ISSOCK(); S_ISFIFO(); S_ISLNK();
返回说明:
成功执行时,返回0。失败返回-1,errno被设为以下的某个值 EBADF: 文件描述词无效 EFAULT: 地址空间不可访问 ELOOP: 遍历路径时遇到太多的符号连接 ENAMETOOLONG:文件路径名太长 ENOENT:路径名的部分组件不存在,或路径名是空字串 ENOMEM:内存不足 ENOTDIR:路径名的部分组件不是目录
stat函数
表头文件: #include <sys/stat.h>
函数定义: int stat(const char *file_name, struct stat *buf);
函数说明: 通过文件名filename获取文件信息,并保存在buf所指的结构体stat中
返回值: 执行成功则返回0,失败返回-1,错误代码存于errno(需要include <errno.h>)
errno 是记录系统的最后一次错误代码。代码是一个int型的值,在errno.h中定义。查看错误代码errno是调试程序的一个重要方法。
当linux C api函数发生异常时,一般会将errno变量(需include errno.h)赋一个整数值,
不同的值表示不同的含义,可以通过查看该值推测出错的原因。在实际编程中用这一招解决了不少原本看来莫名其妙的问题。
stat结构体定义:
struct stat {
dev_t st_dev; //文件的设备编号
ino_t st_ino; //节点
mode_t st_mode; //文件的类型和存取的权限
nlink_t st_nlink; //连到该文件的硬连接数目,刚建立的文件值为1
uid_t st_uid; //用户ID
gid_t st_gid; //组ID
dev_t st_rdev; //(设备类型)若此文件为设备文件,则为其设备编号
off_t st_size; //文件字节数(文件大小)
unsigned long st_blksize; //块大小(文件系统的I/O 缓冲区大小)
unsigned long st_blocks; //块数
time_t st_atime; //最后一次访问时间
time_t st_mtime; //最后一次修改时间
time_t st_ctime; //最后一次改变时间(指属性)
};
示例代码:
#include <sys/stat.h> #include <stdio.h> #include <errno.h> int main() { struct stat buf; int res = stat("test.txt", &buf); if(res != 0) { printf("stat file fail!\n"); printf("%d\n", errno); } return 0; }
lstat函数
示例:
#include int main(int argc,char* argv[]) { int i; struct stat buf; char * ptr; for(i=1;i { if(lstat(argv[i],&buf)<0) { perror(”错误原因是:”); continue; } if (S_ISREG(buf.st_mode)) ptr=”普通文件”; if (S_ISDIR(buf.st_mode)) ptr=”目录”; //……and so on… cout<<”参数为:”<<<”的标识是一个”<< } exit(0); }