有关如何衡量文件大小的几个主题(请参阅Using C++ filestreams (fstream), how can you determine the size of a file?和C++: Getting incorrect 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;
}
会起作用吗?如果不是为什么?
答案 0 :(得分:1)
它应该工作得很好。 C ++标准说的是std::ios::ate
ate
- 打开并在打开后立即寻求结束
当手动打开然后寻求成功时,没有理由失败。在任何一种情况下tellg
都是相同的。