fstream file(file_1.c_str(), ios::out | ios::in | ios::ate); //convert string to const char*
文件不存在时出错。if ( ! file ) = true
fstream file(file_1.c_str(), ios::out | ios::in | ios::app); //convert string to const char*
使用ios::app
seekg
&seekp
功能不起作用。file.seekg(4, ios_base::beg);
我想拥有:
- USER 输入文件名
- 如果不存在则创建文件
- 使用 seekg & seekp;
- 如果您再次运行该程序,请不要删除该文件。