public static class LogerHelper { #region 创建日志 ///----------------------------------------------------------------------------- /// <summary>创建错误日志</summary> /// <param name="message">记录信息</param> /// <returns></returns> ///----------------------------------------------------------------------------- public static void GetLogger(string message) { string strPath; //文件的路径 DateTime dt = DateTime.Now; try { strPath = Directory.GetCurrentDirectory() + "\\Log"; //winform工程\bin\目录下 创建日志文件夹 if(Directory.Exists(strPath)==false) //项目目录下 Log目录 ‘目录是否存在,为true则没有此目录 { Directory.CreateDirectory(strPath); //建立目录 Directory为目录对象 }
strPath = strPath + "\\" + dt.Year.ToString() + "-" + dt.Month.ToString() + "-" + dt.Day.ToString() + ".txt";
StreamWriter FileWriter= new StreamWriter(strPath, true); //创建日志文件.txt文件
FileWriter.WriteLine("[" + dt.ToString("yyyy-MM-dd HH:mm:ss") + "] " + message); FileWriter.Close(); //关闭StreamWriter对象 } catch(Exception ex) { string str=ex.Message.ToString(); } } #endregion } ———————————————— 版权声明:本文为CSDN博主「cn_514」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/cn_514/article/details/89875205