打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
struct stat 的用法
//! 需要包含de头文件
#include <sys/types.h>
#include <sys/stat.h>
 
int stat(const char *filename, struct stat *buf); //! prototype,原型
 
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 <iostream>
#include <ctime>
#include <sys/types.h>
#include <sys/stat.h>
 
using namespace std;
 
int
main ()
{
    struct stat buf;
    int result;
    result = stat ("./Makefile", &buf);
    if (result != 0)
      {
      perror ("Failed ^_^");
      }
    else
      {
      //! 文件的大小,字节为单位
      cout << "size of the file in bytes: " << buf.st_size << endl;
      //! 文件创建的时间
      cout << "time of creation of the file: " << ctime (&buf.st_ctime) <<
          endl;
      //! 最近一次修改的时间
      cout << "time of last modification of the file: " <<
          ctime (&buf.st_mtime) << endl;
      //! 最近一次访问的时间
      cout << "time of last access of the file: " << ctime (&buf.st_atime)
          << endl;
      }
    return 0;
}

$ ./test
size of the file in bytes: 36
time of creation of the file: Sun May 24 18:38:10 2009
time of last modification of the file: Sun May 24 18:38:10 2009
time of last access of the file: Sun May 24 18:38:13 2009

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
C++获取文件大小的方法
linux文件操作之系统调用
C语言中获取文件大小的函数
OS第4次实验报告:文件系统
UNIX环境编程学习笔记(6)
C++头文件—如何创建一个头文件
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服