You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Cli/Logging/LogJanitor.cs

24 lines
494 B

using Recyclarr.TrashLib.Startup;
namespace Recyclarr.Cli.Logging;
public class LogJanitor : ILogJanitor
{
private readonly IAppPaths _paths;
public LogJanitor(IAppPaths paths)
{
_paths = paths;
}
public void DeleteOldestLogFiles(int numberOfNewestToKeep)
{
foreach (var file in _paths.LogDirectory.GetFiles()
.OrderByDescending(f => f.Name)
.Skip(numberOfNewestToKeep))
{
file.Delete();
}
}
}