我有一个 C# 应用程序,它使用 log4net 将一些日志输出写入驻留在应用程序目录中的文件名“logfile.txt”中。我想在文件大小达到 10GB 时立即清空文件的内容。
为此,我使用了一个计时器,它不断检查文件的大小是否超过 10GB。但是我不能对“logfile.txt”执行任何操作,因为它被其他线程用来写日志输出,它把我扔了,
System.IO.IOException “该进程无法访问文件 'C:\Program Files\MyApps\TestApp1\logfile.txt',因为它正被另一个进程使用。”
这是检查文件“logfile.txt”大小的计时器代码
private void timer_file_size_check_Tick(object sender, EventArgs e)
{
try
{
string log_file_path = "C:\\Program Files\\MyApps\\TestApp1\\logfile.txt";
FileInfo f = new FileInfo(log_file_path);
bool ex;
long s1;
if (ex = f.Exists)
{
s1 = f.Length;
if (s1 > 10737418240)
{
System.GC.Collect();
System.GC.WaitForPendingFinalizers();
File.Delete(log_file_path);
//File.Create(log_file_path).Close();
//File.Delete(log_file_path);
//var fs = new FileStream(log_file_path, FileMode.Truncate);
}
}
else
{
MDIParent.log.Error("Log file doesn't exists..");
}
}
catch (Exception er)
{
MDIParent.log.Error("Exceptipon :: " + er.ToString());
}
}