欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何将错误消息输出到绝对路径下

程序员文章站 2022-07-02 15:50:02
编写前需要加入引用空间 using system,IO 新建一个方法 private static void PrintError(string log) { FileStream file=new FileStream("存入的文件名+后缀",FileMode.Append);//把错误消息追加到 ......

编写前需要加入引用空间  using system,io

新建一个方法 private static void printerror(string log)

{

filestream file=new filestream("存入的文件名+后缀",filemode.append);//把错误消息追加到文件里

streamwriter sw-=new streamwriter(file);//实例化文件写入流

console.writerline("date.now.tostring()"+" "+log); //log是传入的

sw.close();//关闭写入流

file.close();//关闭文件流

}

这个方法要在 异常处理块中调用 

try
{

   .........

}

catch(exception e)

{

  pirnterror(e.message); //调用printerror()方法

throw new exception("调用-----出错"+e,message);

}