gpt4 book ai didi

c++ - 如何在 C++ 中写入文件的中间?

转载 作者:可可西里 更新时间:2023-11-01 17:35:09 40 4
gpt4 key购买 nike

我认为这应该很简单,但我的谷歌搜索到目前为止没有帮助......我需要用 C++ 写入现有文件,但不一定在文件末尾。

我知道当我只想将文本附加到我的文件时,我可以在我的流对象上调用 open 时传递标志 ios:app 。但是,这只能让我写入文件的末尾,而不是中间。

我做了一个小程序来说明这个问题:

#include <iostream>
#include <fstream>

using namespace std;

int main () {

string path = "../test.csv";

fstream file;
file.open(path); // ios::in and ios::out by default

const int rows = 100;
for (int i = 0; i < rows; i++) {
file << i << "\n";
}

string line;
while (getline(file, line)) {
cout << "line: " << line << endl; // here I would like to append more text to certain rows
}


file.close();

}

最佳答案

您不能在文件中间插入。您必须将旧文件复制到新文件,并在复制到新文件的过程中在中间插入任何您想要的内容。

否则,如果您打算覆盖现有文件中的数据/行,可以使用 std::ostream::seekp() 来识别文件中的位置。

关于c++ - 如何在 C++ 中写入文件的中间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30642827/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com