首页 > 编程 > C++ > 正文

C++获得文件状态信息的方法

2020-05-23 14:18:00
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C++获得文件状态信息的方法,包括文件状态信息、文件所在磁盘盘符、文件创建时间、访问时间及修改日期等,需要的朋友可以参考下

本文实例讲述了C++获得文件状态信息的方法。分享给大家供大家参考。具体如下:

  1. //C++ 获得文件状态信息源码, 
  2. //C++ 获得文件所在磁盘盘符源码, 
  3. //C++ 文件创建时间源码, 
  4. //C++ 访问时间源码, 
  5. //C++ 最后修改日期源码,No such file or directory(无此文件或索引) 
  6. #include<iostream.h> 
  7. #include <time.h> 
  8. #include <sys/types.h> 
  9. #include <sys/stat.h> 
  10. #include <stdio.h> 
  11. void main( void ) 
  12.   struct stat buf; 
  13.   int result; 
  14.   //获得文件状态信息 
  15.   result =stat( "D:/ok2002.txt", &buf ); 
  16.   //显示文件状态信息 
  17.   if( result != 0 ) 
  18.     perror( "显示文件状态信息出错" );//并提示出错的原因,如No such file or directory(无此文件或索引) 
  19.   else 
  20.   { 
  21.     cout<<"文件大小:"<<buf.st_size<<"字节"<<endl; 
  22.     cout<<"所在磁盘盘符 :"
  23.     cout<<char(buf.st_dev + 'A')<<endl; 
  24.     cout<<"文件创建时间:"<<ctime(&buf.st_ctime); 
  25.     cout<<"访问日期:"<<ctime(&buf.st_atime);//注意这里访问时间为00:00:00为正常 
  26.     cout<<"最后修改日期:"<<ctime(&buf.st_mtime); 
  27.   } 
  28. //请读者打开你的D盘,将ok2002.txt修改成你的D盘现有的文件,或新建一个ok2002.txt,再运行以上代码 
  29. //将运行结果与打开你的D盘在ok2002.txt上点右键/选择属性,弹出窗口上的信息比较,信息是否一至 

希望本文所述对大家的C++程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表