您的位置:首页 > 编程语言 > C语言/C++

VC C/C++ 4种方法获取文件大小 Windows API

2014-01-18 06:36 633 查看

#include <iostream>
#include <windows.h>
#include <io.h>
#include <sys\stat.h>
using namespace std;
void main()
{
char *filepath = "C:\\1.txt";
//方法一

HANDLE handle = CreateFile(filepath, FILE_READ_EA, FILE_SHARE_READ, 0, OPEN_EXISTING, 0, 0);
if (handle != INVALID_HANDLE_VALUE)
{
int size = GetFileSize(handle, NULL);
cout<<size<<endl;
CloseHandle(handle);
}

//方法二

WIN32_FIND_DATA fileInfo;
HANDLE hFind;
DWORD fileSize;
hFind = FindFirstFile(filepath ,&fileInfo);
if(hFind != INVALID_HANDLE_VALUE)
fileSize = fileInfo.nFileSizeLow;
cout<<fileSize<<endl;
FindClose(hFind);

//方法三

FILE* file = fopen(filepath, "r");
if (file)
{
int size = filelength(fileno(file));
cout<<size<<endl;
fclose(file);
}

//方法四 推荐

struct _stat info;
_stat(filepath, &info);
int size = info.st_size;
cout<<size<<endl;

return ;
}


更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: