gpt4 book ai didi

c# - 如何多次写入一个文件

转载 作者:行者123 更新时间:2023-11-30 14:22:38 25 4
gpt4 key购买 nike

我想为我的应用编写调试日志文件。

我不想使用 NuGet,因为我有一个 log4net安装并引起问题。

我想写一个简单的.log文件,以便我可以通过流程添加内容

我需要这样的东西:

System.IO.File.WriteAllText(path + ".log", "<some text>,");

// some lines of code here

System.IO.File.WriteAllText(path + ".log", "<more text>");

当我打开我想查看的日志文件时:<some text>,<more text>

最佳答案

如果你想append(不是rewrite)然后用Append代替Write:

 ...

System.IO.File.AppendAllText(path + ".log", "<more text>");

关于c# - 如何多次写入一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48663856/

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