C#创建日志方法
2021-01-22 12:12
标签:技术 show span 日志 click director opened create direct C#创建日志方法 标签:技术 show span 日志 click director opened create direct 原文地址:https://www.cnblogs.com/cyfjjf/p/12081161.html 1 public void WriteLog(string log)
2 {
3 StreamWriter stream;
4 string path = "D:/WriteLog/";
5 if (!Directory.Exists(path))
6 {
7 Directory.CreateDirectory(path);
8 }
9 stream = new StreamWriter(path + "AddVideo.txt", true, Encoding.UTF8);
10 stream.WriteLine(DateTime.Now.ToString() + ":" + log);
11 stream.Flush();
12 stream.Close();
13 }
下一篇:C# 高级特性总结