获取文件大小的方法(转)

来源:互联网 发布:绝缘电阻测试标准数据 编辑:程序博客网 时间:2024/06/11 05:15
  1. #include <iostream>  
  2. #include <io.h>  
  3. #include <sys/stat.h>  
  4. #include <afx.h>  
  5. #define _AFXDLL  
  6. using namespace std;  
  7.   
  8. void main()  
  9. {  
  10.     // 此文件在工程打开状态下为不可访问  
  11.     char* filepath = "..//test.ncb";  
  12.   
  13.     // 方法一  
  14.     struct _stat info;  
  15.     _stat(filepath, &info);  
  16.     int size = info.st_size;  
  17.     cout<<size<<endl;  
  18.   
  19.     // 方法二  
  20.     FILE* file = fopen(filepath, "rb");  
  21.     if (file)  
  22.     {  
  23.         int size = filelength(fileno(file));  
  24.         cout<<size<<endl;  
  25.         fclose(file);  
  26.     }  
  27.   
  28.     // 方法三  
  29.     CFile cfile;  
  30.     if (cfile.Open(filepath, CFile::modeRead))  
  31.     {  
  32.         int size = cfile.GetLength();  
  33.         cout<<size<<endl;  
  34.     }  
  35.   
  36.     // 方法四  
  37.     HANDLE handle = CreateFile(filepath, FILE_READ_EA, FILE_SHARE_READ, 0, OPEN_EXISTING, 0, 0);  
  38.     if (handle != INVALID_HANDLE_VALUE)  
  39.     {  
  40.         int size = GetFileSize(handle, NULL);  
  41.         cout<<size<<endl;  
  42.         CloseHandle(handle);  
  43.     }  

原创粉丝点击