c++读取文件大小

#include 
#include 
int main(int argc, char* argv[])
{
std::ifstream ifstr("123");
ifstr.seekg( 0 , std::ios::end );
std::cout<<" file size:"<< ifstr.tellg()<<std::endl;
return 0;
}

你可能感兴趣的:(#,C++宝典)