using MediaBrowser.Common.IO; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Library; using System; using System.Collections.Generic; using System.IO; namespace MediaBrowser.Server.Implementations.Library { /// /// Class EntityResolutionHelper /// public static class EntityResolutionHelper { /// /// Any folder named in this list will be ignored - can be added to at runtime for extensibility /// public static readonly List IgnoreFolders = new List { "metadata", "ps3_update", "ps3_vprm", "extrafanart", "extrathumbs", ".actors", ".wd_tv" }; } }