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 @ 2023-11-06 14:55  林新i  阅读(14)  评论(0编辑  收藏  举报