如何写入文本文件中的下一行?

发布于 2024-12-03 00:07:54 字数 355 浏览 0 评论 0原文

如何确保我正在写的消息位于空白行并且不会覆盖更多文本?是否涉及先读取文件?到目前为止,这是我的代码。

 Console.WriteLine("What do you wish to write?");
 String input2 = Console.ReadLine();
 Console.WriteLine("What file do you wish to write to?");
 fpath = Console.ReadLine();
 StreamWriter sw = new StreamWriter(File.OpenWrite(fpath));
 sw.WriteLine(input2);
 sw.Dispose();

How can I make sure that the message I'm writing is on a blank line and doesn't write over more text? Does it involve reading the file first? Here is my code so far.

 Console.WriteLine("What do you wish to write?");
 String input2 = Console.ReadLine();
 Console.WriteLine("What file do you wish to write to?");
 fpath = Console.ReadLine();
 StreamWriter sw = new StreamWriter(File.OpenWrite(fpath));
 sw.WriteLine(input2);
 sw.Dispose();

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

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

发布评论

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

评论(1

很糊涂小朋友 2024-12-10 00:07:54

StreamWriter 构造函数 具有一个重载,其中包含第二个参数指示是否要附加到文件。此外,此构造函数接受路径,因此您不需要使用 File.OpenWrite

using( StreamWriter sw = new StreamWriter(fpath, true) )
{
    sw.WriteLine(input2);
}

The StreamWriter constructor has an overload with a second parameter that indicates whether you want to append to the file. Also, this constructor accepts a path, so you don't need to use File.OpenWrite.

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