ofstream输出文件流简易操作
Posted 飞凡可期
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ofstream输出文件流简易操作相关的知识,希望对你有一定的参考价值。
/*
* 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输出文件流简易操作的主要内容,如果未能解决你的问题,请参考以下文章