C # Create a log file

Source: Internet
Author: User

<summary>
Log file Records
</summary>
<param name= "LogName" > Log description </param>
<param name= "MSG" > Write information </param>
public static void Writemsg (string logName, String msg)
{
Try
{
String path = Path.Combine ("./log");
if (! Directory.Exists (path)//Determine if there is a file
Directory.CreateDirectory (path);
String logfilename = path + "\ \" + DateTime.Now.ToString ("yyyy-mm-dd") + ". Log";//Generate log file
if (! File.exists (LogFileName))//Determine if the log file is the day
{
FileStream FS;
FS = File.create (LogFileName);//Create File
Fs. Close ();
}
StreamWriter writer = File.appendtext (logfilename);//Add a file stream to the file

Writer. WriteLine (DateTime.Now.ToString ("HH:mm:ss") + "" + LogName + "\ r \ n" + msg);
Writer. WriteLine ("--------------------------------Split Line--------------------------------");
Writer. Flush ();
Writer. Close ();
}
catch (Exception e)
{
String path = Path.Combine ("./log");
if (! Directory.Exists (PATH))
Directory.CreateDirectory (path);
String logfilename = path + "\ \" + DateTime.Now.ToString ("yyyy-mm-dd") + ". Log";
if (! File.exists (LogFileName))//Determine if the log file is the day
{
FileStream FS;
FS = File.create (LogFileName);//Create File
Fs. Close ();
}
StreamWriter writer = File.appendtext (logfilename);//Add a file stream to the file
Writer. WriteLine (DateTime.Now.ToString ("Logging error HH:mm:ss") + "\ r \ n" + e.message + "+ msg);
Writer. WriteLine ("--------------------------------Split Line--------------------------------");
Writer. Flush ();
Writer. Close ();
}
}

C # Create a log file

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.