1 #include <iostream>
2 #include <string>
3 #include <vector>
4 #include <fstream>
5
6 using namespace std;
7
8 int main(int argc, char *argv[])
9 {
10 ifstream ifs("test.txt");
11
12 ifs.seekg(0, ios::end); //设置文件指针到文件流的尾部
13 streampos pos = ifs.tellg(); //读取文件指针的位置
14
15 cout << "The file size: " << pos << " byte" << endl;
16 ifs.close(); // 关闭文件流
17
18 return 0;
19 }