1. 程式人生 > >異常日誌文件errorlong

異常日誌文件errorlong

rac ati div byte body ram ace odin message

////////////////////use///////////////
        public void LogException(Exception ex)
        {
            appPath = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase + @"Error\";
            log("\r\nMessage:" + ex.Message + "\r\nStacktrace:" + ex.StackTrace + "\r\n");
        }

        /// <summary>
        /// 本地日誌記錄
        
/// </summary> /// <param name="str">要記錄的日誌內容</param> public static void log(string str) { string filePath = @appPath + "error.log"; string content = DateTime.Now.ToString("yyyyMMddHHmmss:") + str; if (!System.IO.File.Exists(filePath)) { System.IO.File.AppendAllText(filePath, content);
return; } ParameterizedThreadStart threadStart = new ParameterizedThreadStart(writeLog); Thread thread = new Thread(threadStart); thread.Name = "HYAppFrame.log"; thread.Start(str); } /// <summary> /// 當前程序運行路徑
/// </summary> private static string appPath; public static void writeLog(object str) { string filePath = @appPath + "error.log"; string content = "\r\n" + DateTime.Now.ToString("yyyyMMddHHmmss:") + str.ToString(); System.IO.FileInfo info = new System.IO.FileInfo(filePath); if (info.Length > 1024 * 1024 * 5) { while (IsFileInUse(filePath)) Thread.Sleep(100); System.IO.File.Move(filePath, @appPath + "error" + DateTime.Now.ToString("yyyyMMdd") + ".log"); System.IO.File.Delete(filePath); } while (IsFileInUse(filePath)) Thread.Sleep(100); if (!IsFileInUse(filePath)) { #region write file System.IO.FileStream fs = null; try { fs = new System.IO.FileStream(filePath, System.IO.FileMode.Append, System.IO.FileAccess.Write, System.IO.FileShare.None); fs.Write(Encoding.UTF8.GetBytes(content), 0, Encoding.UTF8.GetByteCount(content)); } catch { ; } finally { if (fs != null) fs.Close(); } #endregion } } /// <summary> /// 文件是否被占用?? /// </summary> /// <param name="fileName"></param> /// <returns></returns> public static bool IsFileInUse(string fileName) { bool inUse = true; System.IO.FileStream fs = null; try { fs = new System.IO.FileStream(fileName, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.None); inUse = false; } catch { inUse = true; } finally { if (fs != null) fs.Close(); } return inUse; }

異常日誌文件errorlong