struct stat 结构体解释

来源:互联网 发布:后氧传感器数据偏高 编辑:程序博客网 时间:2024/05/20 15:12

 

  1. //! 需要包含de头文件   
  2.   
  3. #include <sys/types.h>   
  4.   
  5. #include <sys/stat.h>    
  6.   
  7. int stat(const char *filename, struct stat *buf); //! prototype,原型   
  8.   
  9. struct stat  
  10. {  
  11.   
  12.     dev_t       st_dev;     /* ID of device containing file -文件所在设备的ID*/  
  13.   
  14.     ino_t       st_ino;     /* inode number -inode节点号*/  
  15.   
  16.     mode_t      st_mode;    /* protection -保护模式?*/  
  17.   
  18.     nlink_t     st_nlink;   /* number of hard links -链向此文件的连接数(硬连接)*/  
  19.   
  20.     uid_t       st_uid;     /* user ID of owner -user id*/  
  21.   
  22.     gid_t       st_gid;     /* group ID of owner - group id*/  
  23.   
  24.     dev_t       st_rdev;    /* device ID (if special file) -设备号,针对设备文件*/  
  25.   
  26.     off_t       st_size;    /* total size, in bytes -文件大小,字节为单位*/  
  27.   
  28.     blksize_t   st_blksize; /* blocksize for filesystem I/O -系统块的大小*/  
  29.   
  30.     blkcnt_t    st_blocks;  /* number of blocks allocated -文件所占块数*/  
  31.   
  32.     time_t      st_atime;   /* time of last access -最近存取时间*/  
  33.   
  34.     time_t      st_mtime;   /* time of last modification -最近修改时间*/  
  35.   
  36.     time_t      st_ctime;   /* time of last status change - */  
  37.   
  38. };  
[cpp] view plaincopyprint?
  1. #include <iostream>   
  2.   
  3. #include <ctime>   
  4.   
  5. #include <sys/types.h>   
  6.   
  7. #include <sys/stat.h>    
  8.   
  9. using namespace std;   
  10.   
  11. int  
  12. main ()  
  13. {  
  14.     struct stat buf;  
  15.   
  16.     int result;  
  17.   
  18.     result = stat ("./Makefile", &buf);  
  19.   
  20.     if (result != 0)  
  21.       {  
  22.           perror ("Failed ^_^");  
  23.       }  
  24.     else  
  25.       {  
  26.   
  27.           //! 文件的大小,字节为单位   
  28.   
  29.           cout << "size of the file in bytes: " << buf.st_size << endl;  
  30.   
  31.           //! 文件创建的时间   
  32.   
  33.           cout << "time of creation of the file: " << ctime (&buf.st_ctime) <<  
  34.   
  35.               endl;  
  36.   
  37.           //! 最近一次修改的时间   
  38.   
  39.           cout << "time of last modification of the file: " <<  
  40.   
  41.               ctime (&buf.st_mtime) << endl;  
  42.   
  43.           //! 最近一次访问的时间   
  44.   
  45.           cout << "time of last access of the file: " << ctime (&buf.st_atime)  
  46.   
  47.               << endl;  
  48.       }  
  49.   
  50.     return 0;  
  51.   
  52. }  
[cpp] view plaincopyprint?
  1. $ ./test  
  2.   
  3. size of the file in bytes: 36  
  4.   
  5. time of creation of the file: Sun May 24 18:38:10 2009  
  6.   
  7. time of last modification of the file: Sun May 24 18:38:10 2009  
  8.   
  9. time of last access of the file: Sun May 24 18:38:13 2009