C++/CLi - 使用流编写器写入文本文件会覆盖已有的内容

发布于 2024-10-31 07:13:16 字数 287 浏览 0 评论 0原文

我用来将字符串写入文件的代码如下:

void addToWhitelist(System::String ^emailAddress)
{
StreamWriter ^pwriter = gcnew StreamWriter("whitelist.txt");
pwriter->WriteLine(emailAddress);
pwriter->Close();
}

这运行良好,但是一旦我再次运行该函数,写入文本文件的字符串就会被新值覆盖。我将如何将字符串附加到文件的新行上?

The code I'm using to write a string to a file is as follows:

void addToWhitelist(System::String ^emailAddress)
{
StreamWriter ^pwriter = gcnew StreamWriter("whitelist.txt");
pwriter->WriteLine(emailAddress);
pwriter->Close();
}

This works well, but as soon as I run the function again, the string that was written to the text file is overwritten with the new value. How would I go about appending the string to the file on a new line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

演出会有结束 2024-11-07 07:13:16

尝试将“true”添加为 StreamWriter 构造函数的第二个参数。
(布尔值表示是否追加)

Try adding "true" as second parameter to StreamWriter constructor.
(Boolean value says whether to append)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文