栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

Linux系统编程 49 -stat函数

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Linux系统编程 49 -stat函数

学习笔记

stat函数
获取文件属性,说白了就是从inode中获取

#include
#include
#include

int stat(const char *pathname, struct stat *statbuf);

第一参数:文件路径 传入参数
第二参数:struct stat *statbuf:传出参数,存储文件属性信息

返回值:
成功是0
失败是-1  


重点是结构体

几乎就是ls -l出来的信息

struct stat {
    dev_t     st_dev;         //使用的设备
    ino_t     st_ino;         //inode 号
    mode_t    st_mode;        //访问权限
    nlink_t   st_nlink;       //硬链接数
    uid_t     st_uid;         //UID
    gid_t     st_gid;         //GID
    dev_t     st_rdev;        
    off_t     st_size;        //大小
    blksize_t st_blksize;     
    blkcnt_t  st_blocks;      //占用几个扇区

    

    struct timespec st_atim;  
    struct timespec st_mtim;  
    struct timespec st_ctim;  

    #define st_atime st_atim.tv_sec      
    #define st_mtime st_mtim.tv_sec
    #define st_ctime st_ctim.tv_sec
};


获取文件大小的正规操作:st_size成员
查看下面的程序:

$cat mystat.c
#include 
#include 
#include 
#include 
#include 
#include 

int main(int argc, char *argv[])
{
    struct stat sbuf;
    int ret = stat(argv[1],&sbuf);
    if( -1 == ret )
    {
        perror("stat error");
        exit(1);
    }

    printf("file size:%ldn",sbuf.st_size);
    return 0;
}
$ls
f.c  makefile  mystat  mystat.c
$./mystat ./f.c
file size:500
$ls -l f.c
-rwxr--r-- 1 ubuntu ubuntu 500 12月 24 00:00 f.c

作业:
st_mode 就是文件类型,使用这个成员来可以判断文件类型

           if ((sb.st_mode & S_IFMT) == S_IFREG) {
               
           }
 

S_ISREG(m)  is it a regular file?

S_ISDIR(m)  directory?

S_ISCHR(m)  character device?

S_ISBLK(m)  block device?

S_ISFIFO(m) FIFO (named pipe)?

S_ISLNK(m)  symbolic link?  (Not in POSIX.1-1996.)

S_ISSOCK(m) socket?  (Not in POSIX.1-1996.)

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/679228.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号