C++学习(四四八)fstream写文件
Posted hankern
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习(四四八)fstream写文件相关的知识,希望对你有一定的参考价值。
std::fstream outStream;
std::string _logPath;
outStream.open(_logPath.c_str(), std::ios::out);
if (outStream.fail())
OE_WARN << LC << "Unable to open " << _logPath << " for logging shaders." << std::endl;
else
outStream << buf.str();
outStream.close();
以上是关于C++学习(四四八)fstream写文件的主要内容,如果未能解决你的问题,请参考以下文章