ofstream追加写文件
时间: 2024-01-07 22:05:45 浏览: 89
C#用stream写文件
3星 · 编辑精心推荐
对于ofstream追加写文件,你可以使用ios::app标志来打开文件以进行追加写操作。下面是一个示例代码:
```cpp
#include <iostream>
#include <fstream>
int main() {
std::ofstream outfile;
outfile.open("example.txt", std::ios::app);
if (outfile.is_open()) {
outfile << "This is a new line." << std::endl;
outfile.close();
std::cout << "File appended successfully." << std::endl;
} else {
std::cout << "Failed to open the file." << std::endl; }
return 0;
}
```
在这个例子中,我们打开名为"example.txt"的文件,并将其标记为追加写模式,然后在文件末尾添加一行文本。最后,我们关闭文件并输出结果。
阅读全文