码迷,mamicode.com
首页 > Windows程序 > 详细

C#创建日志方法

时间:2020-04-26 20:34:50      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:src   splay   opened   time   writer   class   public   utf8   click   

1.通过流的方式
技术图片
 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         }
View Code

C#创建日志方法

标签:src   splay   opened   time   writer   class   public   utf8   click   

原文地址:https://www.cnblogs.com/alannever/p/12782011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!