码迷,mamicode.com
首页 > 编程语言 > 详细

C++ get file size

时间:2020-01-21 10:34:42      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:class   data   c++   ++   return   lang   seek   pos   turn   

1/
#include <fstream> std::ifstream::pos_type filesize(const char* filename) { std::ifstream in(filename, std::ifstream::ate | std::ifstream::binary); return in.tellg(); }



2/

#include <fstream>

int getFileSize(const std::string &fileName)
{
    ifstream file(fileName.c_str(), ifstream::in | ifstream::binary);

    if(!file.is_open())
    {
        return -1;
    }

    file.seekg(0, ios::end);
    int fileSize = file.tellg();
    file.close();

    return fileSize;
}

C++ get file size

标签:class   data   c++   ++   return   lang   seek   pos   turn   

原文地址:https://www.cnblogs.com/jieliujas/p/12220731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!