/*
* fstreamSteps.cpp
*
* Created on: 2021年6月26日
* Author: Perfey
*/
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
std::ofstream confg_;
if (!confg_ .good())
{
//std::cout <<strerror(errno)<<std::endl;
confg_.clear();
}
confg_.open("config.dat", std::ios::out | std:: ios::trunc);
confg_ << "[ This is configure file!]" <<endl;
confg_ << "Input = " << "filepath"<<endl;
confg_.close();
cout<< "finished!"<<endl;
return 0;
}
ofstream输出文件流简易操作
最新推荐文章于 2024-09-05 16:37:34 发布
本文介绍了一个简单的C++程序,该程序使用fstream库中的ofstream类来创建并写入一个名为config.dat的配置文件。程序首先检查文件流的状态,并在确认没有错误后打开文件,清空原有内容,并写入新的文本。
摘要由CSDN通过智能技术生成