【C++每日一练】2.在文件末尾追加字符串
【摘要】
需求:在文件末尾追加字符串
#include <string>
#include <fstream>
#include <iostream>
using n...
需求:在文件末尾追加字符串
#include <string>
#include <fstream>
#include <iostream>
using namespace std;
int main(int argc,char **argv)
{
string query;
std::fstream in("c:/1.txt", ios::in|ios::out|ios::binary);
//文件大小
auto filesize = in.tellg();
//移动到末端
in.seekg (0, ios::end);
//写文件
in<<"123";
//关闭
in.close();
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
文章来源: yujiang.blog.csdn.net,作者:鱼酱2333,版权归原作者所有,如需转载,请联系作者。
原文链接:yujiang.blog.csdn.net/article/details/121966505
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)