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;
}
}
}
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
2017-11-06 存储过程
2017-11-06 查询
2017-11-06 sqlHelper