#182 Remove covers that have no asssociated Manga

This commit is contained in:
Glax 2024-05-26 18:46:40 +02:00
parent 98bd8a983b
commit e3211b95e2

View File

@ -180,13 +180,10 @@ public class JobBoss : GlobalBase
AddMangaToCache(dncJob.manga); AddMangaToCache(dncJob.manga);
} }
HashSet<string> coverFileNames = GetAllCachedManga().Select(manga => manga.coverFileNameInCache!).ToHashSet(); string[] coverFiles = Directory.GetFiles(settings.coverImageCache);
foreach (string fileName in Directory.GetFiles(settings.coverImageCache)) //Cleanup Unused Covers foreach(string fileName in coverFiles.Where(fileName => !GetAllCachedManga().Any(manga => manga.coverFileNameInCache == fileName)))
{
if(!coverFileNames.Any(existingManga => fileName.Contains(existingManga)))
File.Delete(fileName); File.Delete(fileName);
} }
}
internal void UpdateJobFile(Job job, string? oldFile = null) internal void UpdateJobFile(Job job, string? oldFile = null)
{ {