0

我有一个 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());
    } 
}
4

1 回答 1

1

您不应该自己删除日志文件,因为 log4net 可以为您完成。如果您使用RollingFileAppender,您可以指定最大文件大小(maximumFileSize 属性)。此外,如果您将maxSizeRollBackups属性设置为 0,则日志文件将在达到限制时被截断。请看这个问题的例子。

于 2014-11-15T09:33:05.390 回答