📌  相关文章
📜  std::ifstream 以字节为单位获取文件的大小 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:25.979000             🧑  作者: Mango

代码示例1
ifstream file( "example.txt", ios::binary | ios::ate);
return file.tellg();