Asp.Net写文本日志

底层代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace AddLog
{
    /// <summary>
    /// 记录:文件以时间命名
    /// </summary>
    public class Log
    {
        private static System.IO.StreamWriter swt;
        private static System.IO.FileStream fs;
        /// <summary>
        /// 判断文件是否存在
        /// </summary>
        private static bool IsExsFile = false;
        public static void Init()
        {
            Init("");
        }
        /// <summary>
        /// 记录初始化
        /// </summary>
        /// <param name="DirName">文件夹名字:默认为Log</param>
        public static void Init(string DirName)
        {
            string LogPath = string.Empty;
            if (!string.IsNullOrWhiteSpace(DirName))
            {
                LogPath = Environment.CurrentDirectory + "\\" + DirName;
            }
            else
            {
                LogPath = Environment.CurrentDirectory + "\\Log";
            }
            if (!System.IO.Directory.Exists(LogPath))
            {
                System.IO.Directory.CreateDirectory(LogPath);
            }
            string LogFile = LogPath + "\\" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt";
          
            if (!System.IO.File.Exists(LogFile))
            {
                fs = new System.IO.FileStream(LogFile, System.IO.FileMode.OpenOrCreate, System.IO.FileAccess.ReadWrite);
                swt = new System.IO.StreamWriter(fs, Encoding.UTF8);
            }
            else
            {
                IsExsFile = true;
                swt = new System.IO.StreamWriter(LogFile,true);
            }
            
           
        }
        /// <summary>
        /// 清除缓存
        /// </summary>
        public static void Clear()
        {
            swt.Flush();
            swt.Close();
            swt.Dispose();
            if(!IsExsFile)
            {
                fs.Close();
                fs.Dispose();
            }
           
        }
        /// <summary>
        /// 写操作
        /// </summary>
        /// <param name="strTxt">写入文本</param>
        public static void Write(string strTxt)
        {
            if (swt != null)
            {
                swt.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\t" + strTxt);
            }
        }
    }
}
View Code

 

调用代码:

AddLog.Log.Init();
AddLog.Log.Write("测试");
AddLog.Log.Clear();
View Code

 

转载于:https://www.cnblogs.com/whatever199006/p/4292893.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值