struct stat结构体的详解和用法

  1. //! 需要包含de头文件  
  2.   
  3. #include <sys/types.h>  
  4.   
  5. #include <sys/stat.h>   

S_ISLNK(st_mode):是否是一个连接.
S_ISREG(st_mode):是否是一个常规文件.
S_ISDIR(st_mode):是否是一个目录
S_ISCHR(st_mode):是否是一个字符设备.
S_ISBLK(st_mode):是否是一个块设备
S_ISFIFO(st_mode):是否 是一个FIFO文件.
S_ISSOCK(st_mode):是否是一个SOCKET文件 
  1.   
  2. int stat(const char *filename, struct stat *buf); //! prototype,原型   
  3.   
  4. struct stat  
  5. {  
  6.   
  7.     dev_t       st_dev;     /* ID of device containing file -文件所在设备的ID*/  
  8.   
  9.     ino_t       st_ino;     /* inode number -inode节点号*/  
  10.   
  11.     mode_t      st_mode;    /* protection -保护模式?*/  
  12.   
  13.     nlink_t     st_nlink;   /* number of hard links -链向此文件的连接数(硬连接)*/  
  14.   
  15.     uid_t       st_uid;     /* user ID of owner -user id*/  
  16.   
  17.     gid_t       st_gid;     /* group ID of owner - group id*/  
  18.   
  19.     dev_t       st_rdev;    /* device ID (if special file) -设备号,针对设备文件*/  
  20.   
  21.     off_t       st_size;    /* total size, in bytes -文件大小,字节为单位*/  
  22.   
  23.     blksize_t   st_blksize; /* blocksize for filesystem I/O -系统块的大小*/  
  24.   
  25.     blkcnt_t    st_blocks;  /* number of blocks allocated -文件所占块数*/  
  26.   
  27.     time_t      st_atime;   /* time of last access -最近存取时间*/  
  28.   
  29.     time_t      st_mtime;   /* time of last modification -最近修改时间*/  
  30.   
  31.     time_t      st_ctime;   /* time of last status change - */  
  32.   
  33. };  

  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. }  

  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  


原文地址:https://www.cnblogs.com/wxmdevelop/p/4649495.html