----------------------------------------------------- struct statfs { long f_type; //文件系统类型 long f_bsize; //块大小 long f_blocks; //块多少 long f_bfree; //空闲的块 long f_bavail; //可用块 long f_files; //总文件节点 long f_ffree; //空闲文件节点 fsid_t f_fsid; //文件系统id long f_namelen; //文件名的最大长度 long f_spare[6]; //spare for later };
stat、fstat和lstat函数(UNIX)
#include #include int stat(const char *restrict pathname, struct stat *restrict buf); 提供文件名字,获取文件对应属性。感觉一般是文件没有打开的时候这样操作。 int fstat(int filedes, struct stat *buf); 通过文件描述符获取文件对应的属性。文件打开后这样操作 int lstat(const char *restrict pathname, struct stat *restrict buf); 连接文件
struct stat{ mode_t st_mode; /*file tpye &mode (permissions)*/ ino_t st_ino; /*i=node number (serial number)*/ dev_t st_rdev; /*device number for special files*/ nlink_t st_nlink; /*number of links*/ uid_t st_uid; /*user id of owner*/ gid_t st_gid; /*group ID of owner*/ off_t st_size; /*size in bytes for regular files*/ time_t st_atime; /*time of last access*/ time_t st_mtime; /*time of last modification*/ time_t st_ctime; /*time of last file status change*/ long st_blksize; /*best I/O block size */ long st_blocks; /*number of 512-byte blocks allocated*/ }; 注意,除最后两个以外,其他各成员都为基本系统数据类型。我们将说明此结构的每个成员以了解文件属性。 使用stat函数最多的可能是ls-l命令,用其可以获得有关一个文件的所有信息。 1 函数都是获取文件(普通文件,目录,管道,socket,字符,块()的属性。 函数原型 #include