在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
public static void ErrorLog(string mssg) { string FilePath = "D:/logs/ErrorLog.txt"; try { if (System.IO.File.Exists(FilePath)) { using (StreamWriter tw = System.IO.File.AppendText(FilePath)) { tw.WriteLine(DateTime.Now.ToString() + "> " + mssg); } //END using } //END if else { StreamWriter tw = new StreamWriter(FilePath); tw.WriteLine(DateTime.Now.ToString() + "> " + mssg); tw.Flush(); tw.Close(); tw = null; } //END else } //END Try catch (Exception ex) { } //END Catch } // END ErrorLog
|
请发表评论