1

关于如何测量文件大小的几个主题(请参阅Using C++ filestreams (fstream), how can you can determine the size of a file?C++: Getting wrong file size)计算文件开头和结尾之间的差异:

std::streampos fileSize( const char* filePath ){

    std::streampos fsize = 0;
    std::ifstream file( filePath, std::ios::binary );

    fsize = file.tellg();
    file.seekg( 0, std::ios::end );
    fsize = file.tellg() - fsize;
    file.close();

    return fsize;
}

但不是在开始时打开文件,我们可以在最后打开它并采取措施,如下所示:

std::streampos fileSize( const char* filePath ){

    std::ifstream file( filePath, std::ios::ate | std::ios::binary );
    std::streampos fsize = file.tellg();
    file.close();

    return fsize;
}

它会起作用吗?如果不是为什么?

4

1 回答 1

2

它应该工作得很好。C++ 标准说std::ios::ate

ate- 打开并在打开后立即结束

当手动打开然后搜索成功时,它没有理由失败。并且tellg在任何一种情况下都是相同的。

于 2012-10-09T02:04:35.327 回答