C++ 写出txt覆盖原文件或追加写入文件

CString outtest = outdir_base + "\\ou.txt";//在路径中写出文件
std::ofstream outfile(outtest);
for(int i = 0;i<tempVert.size();i++){
		ZVert tempv = tempVert[i];
		outfile<< String(tempv.Co3d().x)+" "+String(tempv.Co3d().y)+" "+String(tempv.Co3d().z)+" "+String(tempv.uvw[0])+" "+String(tempv.uvw[1])+" "+String(tempv.uvw[2])+" "+String(0.000000)<<std::endl;
	}

上一篇文章https://blog.csdn.net/weixin_38980073/article/details/110858820说到写出txt文件。每运行一次程序,就会覆盖写出一个txt。

要做到追加写入,需要在outfile后加如下参数

std::ofstream outfile(outtest,std::ios::app);//追加文件,不加为默认覆盖

这样就不会覆盖原来的同名txt,在其后部追加写入。

    原文作者:果子火火
    原文地址: https://blog.csdn.net/weixin_38980073/article/details/111214548
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞