c/c++獲取文件大小的方法

#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 ;
}

int nRet = _findfirst(str.c_str(),&fd);

網站欄目:c/c++獲取文件大小的方法
分享鏈接:http://muchs.cn/article12/ihiigc.html

成都網站建設公司_創(chuàng)新互聯(lián),為您提供網站收錄、外貿建站企業(yè)建站、電子商務、自適應網站網站設計

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

手機網站建設