当前位置:   article > 正文

C++更新式写文件方法,fstream踩坑_std::ios::out

std::ios::out

先贴代码
这个是C风格写文件

		FILE* fp_enc = fopen(dec_file_path, "rb+");
		if (file == NULL) {
            file = fopen(dec_file_path, "wb");
        }
		fseek(fp_enc, 0, SEEK_SET);
  • 1
  • 2
  • 3
  • 4
  • 5

这个是C++风格写文件

	std::fstream outStreamFile;
	outStreamFile.open("1.txt", std::ios::in | std::ios::out | std::ios::binary);
	if (!outStreamFile.is_open())
	{
		outStreamFile.open("1.txt", std::ios::out | std::ios::binary);
	}
	if (outStreamFile.is_open())
	{
		outStreamFile.seekp(10);
		outStreamFile.write((char*)"1234567890", 10);
	}
	outStreamFile.close();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

注意部分更新需要关注的点
std::ios::in | std::ios::out结合可以打开文件并SEEK写入,但是有一个问题是在于没有实际的文件的情况下不会进行文件的创建,打开失败
所以需要判断一下,如果打开失败使用 std::ios::out直接创建文件并写入

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/300434
推荐阅读
相关标签
  

闽ICP备14008679号