C# 创建TXT文本日志,在尾行追加内容

调试程序总是会用需要一个日志文件记录调试过程。这个代码会自动创建一个文本文件然后在尾行添加新的内容。

可能会存在的问题是:如果这个日志已经被一个用户打开,可能其他用户就不能写入了。不过我用了

using (StreamWriter SW = File.AppendText(LogFile))来解决这个问题。但是没有进行完全性的测试


public void CheckLog(string Log)
{
if (File.Exists(LogFile))
{
WriteLog(Log);
}

else
{
CreateLog();
WriteLog(Log);
}
}

private void CreateLog()
{
StreamWriter SW;
SW = File.CreateText(LogFile);
SW.WriteLine("Log created at: " +
DateTime.Now.ToString("dd-MM-yyyy hh:mm:ss"));
SW.Close();
}

private void WriteLog(string Log)
{
using (StreamWriter SW = File.AppendText(LogFile))
{
SW.WriteLine(Log);
SW.Close();
}
}

来自:http://dotnet.chinaitlab.com/CSharp/796519.html

你可能感兴趣的:(txt)