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

c#写日志

时间:2018-11-06 13:28:18      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:方法   sage   mes   main   txt   writer   domain   basedir   close   

方法一:以日期为日志文件名,输出txt文件

public void WriteLog(string msg) 

    string filePath = AppDomain.CurrentDomain.BaseDirectory + "Log"; 
    if (!Directory.Exists(filePath)) 
    { 
        Directory.CreateDirectory(filePath); 
    } 
    string logPath = AppDomain.CurrentDomain.BaseDirectory + "Log\\" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt"; 
    try 
    { 
        using (StreamWriter sw = File.AppendText(logPath)) 
        { 
            sw.WriteLine("消息:" + msg); 
            sw.WriteLine("时间:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")); 
            sw.WriteLine("**************************************************"); 
            sw.WriteLine(); 
            sw.Flush(); 
            sw.Close(); 
            sw.Dispose(); 
        } 
    } 
    catch (IOException e) 
    { 
        using (StreamWriter sw = File.AppendText(logPath)) 
        { 
            sw.WriteLine("异常:" + e.Message); 
            sw.WriteLine("时间:" + DateTime.Now.ToString("yyy-MM-dd HH:mm:ss")); 
            sw.WriteLine("**************************************************"); 
            sw.WriteLine(); 
            sw.Flush(); 
            sw.Close(); 
            sw.Dispose(); 
        } 
    } 

c#写日志

标签:方法   sage   mes   main   txt   writer   domain   basedir   close   

原文地址:https://www.cnblogs.com/zmbhfly/p/9914416.html

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