C#系统日志

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyMES
{
public class Lognet
{

public String Debug(String Content)
{
string folderPath = @"D:\Log\";
string Y = DateTime.Now.Year.ToString() + "年";
string M = DateTime.Now.Month.ToString() + "月";
string D = DateTime.Now.Day.ToString() + "日";
string H = DateTime.Now.Hour.ToString();
string m = DateTime.Now.Minute.ToString();
string s = DateTime.Now.Second.ToString();
//文件夹路径
string Path = folderPath + Y + @"\" + M + @"\" + D;
//txt测试报告文件路径
string texPath = Path + @"\QXKB.txt";
if (!Directory.Exists(Path))
{
Directory.CreateDirectory(Path);
}
//添加测试报告文件
FileStream fs = new FileStream(texPath, FileMode.Append);
//生成一个代理工具之类的对象
StreamWriter wr = new StreamWriter(fs);
//写入日志内容
string TestText = Y + M + D + H + "时" + m + "分" + s + "秒:" + "\r\n" + Content + "\r\n";
wr.WriteLine(TestText, Encoding.UTF8);
//关闭文件
wr.Close();
return TestText;
}

}

}

posted @   林新i  阅读(21)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
历史上的今天:
2017-11-06 存储过程
2017-11-06 查询
2017-11-06 sqlHelper
点击右上角即可分享
微信分享提示