std::streampos tellp(); std::streampos tellg(); 2)移动文件位置指针 ofstream类的函数是seekp();ifstream类的函数是seekg()...outfile.is_open()) { cout << "无法打开文件" << endl; return 1; } // 写入数据outfile...如果打开成功,该函数将返回true,否则返回 false。 获取文件位置:可以使用...
outputFile.open("outputFile.txt",std::ios::out |std::ios::app);std::cout<<"Restart -> appending already existing outfile"<<std::endl; }else{// Opening output fileoutputFile.open("outputFile.txt");// Opening saving file/*if((ptr_fp = fopen("cppTestOutput.bin", "ab")) == NULL...