1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-06-30 09:39:52 +02:00
This commit is contained in:
Alien21 2024-06-20 18:12:06 +03:00 committed by GitHub
commit fb57a620da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,6 +32,8 @@ public class RootFolderService : IRootFolderService
private readonly INamingConfigService _namingConfigService;
private readonly Logger _logger;
private static readonly string IgnoreFolderFile = ".rrignore";
private static readonly HashSet<string> SpecialFolders = new HashSet<string>
{
"$recycle.bin",
@ -185,6 +187,8 @@ private List<UnmappedFolder> GetUnmappedFolders(string path, Dictionary<int, str
var setToRemove = SpecialFolders;
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
results.RemoveAll(x => Directory.Exists(x.Path) && Directory.GetFiles(x.Path, IgnoreFolderFile).Length > 0);
_logger.Debug("{0} unmapped folders detected.", results.Count);
return results.OrderBy(u => u.Name, StringComparer.InvariantCultureIgnoreCase).ToList();
}