I am wondering on how to create a new directory for a log event file in windows service through c#
I have the following code:
public static void WriteLog(string Message)
{
    StreamWriter sw = null;
    try
    {
        sw = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory + "\\DataFile.txt", true);
        //sw = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory + "C:\\MulpuriServiceLOG\\data.txt", true);
        //sw.WriteLine(DateTime.Now.ToString() + ": " + Message);
        sw.WriteLine(Message);
        sw.Flush();
        sw.Close();
    }
    catch{}
}
 
     
    