gpt4 book ai didi

c# - 使用 WriteAllLines 追加到文本文件

转载 作者:行者123 更新时间:2023-12-02 02:26:48 25 4
gpt4 key购买 nike

我正在使用以下代码写入文本文件。我的问题是,每次执行以下代码时,它都会清空 txt 文件并创建一个新文件。有没有办法追加到这个txt文件?

string[] lines = {DateTime.Now.Date.ToShortDateString(),DateTime.Now.TimeOfDay.ToString(), message, type, module };
System.IO.File.WriteAllLines(HttpContext.Current.Server.MapPath("~/logger.txt"), lines);

最佳答案

File.AppendAllLines 应该可以帮助您:

string[] lines = {DateTime.Now.Date.ToShortDateString(),DateTime.Now.TimeOfDay.ToString(), message, type, module };
System.IO.File.AppendAllLines(HttpContext.Current.Server.MapPath("~/logger.txt"), lines);

关于c# - 使用 WriteAllLines 追加到文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15379136/

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