码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 在文本文件后追加写入字符串

时间:2016-05-15 21:25:57      阅读:698      评论:0      收藏:0      [点我收藏+]

标签:

下面的代码起到这样一个作用:

如果有flow.txt文件,则打开该文件,在文件中继续写入字符串;

如果没有该文件,则创建该文件并写入。

 

#include<string>
#include<fstream>
#include <iostream>

 

std::ofstream file;
if (file.bad())
{
    std::cout << "cannot open file" << std::endl;;
}
file.open("flow.txt", std::ios::app);
file << flow << "\n";

C++ 在文本文件后追加写入字符串

标签:

原文地址:http://www.cnblogs.com/VVingerfly/p/5495892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!