C#按日期年月日分別寫入記錄

        //private static string startPath = "C:\\RS Data\\";
        private static string startPath = Environment.CurrentDirectory;  


     #region   "工具函數區"

        /// <summary>
        /// 寫入LOG
        /// </summary>
        /// <param name="sMessage"></param>
        public static void WriteLog(string sMessage)
        {
            /*檢查Log資料夾是否存在*/
            if (!Directory.Exists(Path.Combine(startPath, "Log")))
            {
                /*如果沒有Log資料夾,則新建一個*/
                Directory.CreateDirectory(Path.Combine(startPath, "Log"));
            }


            /*Log檔日期格式*/
            string Year = String.Format("{0:yyyy}", DateTime.Now);
            string Month = String.Format("{0:MM}", DateTime.Now);
            string Day = String.Format("{0:dd}", DateTime.Now);
            string Time = Year + "_" + Month + "_" + Day;


            /*檢查Log資料夾內的年資料夾是否存在*/
            if (!Directory.Exists(Path.Combine(startPath, "Log\\" + Year)))
            {
                /*如果Log資料夾內的年資料夾沒有年資料夾,則新建一個*/
                Directory.CreateDirectory(Path.Combine(startPath, "Log\\" + Year));
            }


            /*檢查Log資料夾內的年資料夾內的月資料夾是否存在*/
            if (!Directory.Exists(Path.Combine(startPath, "Log\\" + Year + "\\" + Month)))
            {
                /*如果Log資料夾內的年資料夾的年資料夾內沒有月資料夾,則新建一個*/
                Directory.CreateDirectory(Path.Combine(startPath, "Log\\" + Year + "\\" + Month));
            }


            /*寫入文字檔*/
            /*訊息前加入時、分、秒與辨識字首*/
            string LogFormat = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + " ==> ";
            using (StreamWriter sw = new StreamWriter(Path.Combine(startPath + "\\Log\\" + Year + "\\" + Month, Time + ".log"), true))
            {
                sw.WriteLine(LogFormat + sMessage);
            }
        }


        #endregion
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值