LogMessageToFile ("Mesaj Log durumu");
using System;
using System.IO;
public string GetTempPath()
{
string path =
System.Environment.GetEnvironmentVariable ("TEMP");
if (!path.EndsWith ("\\"))
{
path += "\\";
}
return path;
}
public void LogMessageToFile (string message)
{
System.IO.StreamWriter sw =
System.IO.File.AppendText(
GetTempPath() + "Logfile.txt"); // Dosya adının değişikliği
try
{
string logLine =
System.String.Format(
"{0:G}: {1}.", System.DateTime.Now, message);
sw.WriteLine(logLine);
}
finally
{
sw.Close();
}
}
Hiç yorum yok:
Yorum Gönder