stat 获取文件对应的属性

本文展示了一个C++程序如何使用标准库中的`stat`函数获取当前文件的详细属性,包括模式、inode节点号、设备号码、特殊设备号码、文件连接数、文件所有者、文件所有者对应的组、文件字节数、访问时间、修改时间和状态改变时间。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#include <sys/stat.h>

#include <iostream>


int main() {

    using std::cout;

    using std::endl;

    struct stat sbuf;


    if (stat(__FILE__, &sbuf) == 0) {   //__FILE__代表当前文件名

        cout << sbuf.st_mode << "--文件对应的模式,文件,目录等"  << endl;

        cout << sbuf.st_ino << "--inode节点号" << endl;

        cout << sbuf.st_dev << "--设备号码"  << endl;

        cout << sbuf.st_rdev << "--特殊设备号码"  << endl;

        cout << sbuf.st_nlink << "--文件的连接数" << endl;

        cout << sbuf.st_uid << "--文件所有者" << endl;

        cout << sbuf.st_gid << "--文件所有者对应的组" <<  endl;

        cout << sbuf.st_size << "--普通文件对应的文件字节数" << endl;

        cout << sbuf.st_atime << "--文件最后的访问时间" << endl;

        cout << sbuf.st_mtime << "--文件内容最后的修改时间" << endl;

        cout << sbuf.st_ctime << "--文件状态的改变时间" << endl;

        cout << sbuf.st_blksize << "--文件内容对应的块大小" << endl;

        cout << sbuf.st_blocks << "--文件内容对应的块数量"  << endl;

    }


    return 0;

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值