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

17 lines
372 B

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