EntityResolutionHelper.cs 818 B

123456789101112131415161718192021222324252627282930
  1. using MediaBrowser.Common.IO;
  2. using MediaBrowser.Controller.Entities;
  3. using MediaBrowser.Controller.Library;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.IO;
  7. namespace MediaBrowser.Server.Implementations.Library
  8. {
  9. /// <summary>
  10. /// Class EntityResolutionHelper
  11. /// </summary>
  12. public static class EntityResolutionHelper
  13. {
  14. /// <summary>
  15. /// Any folder named in this list will be ignored - can be added to at runtime for extensibility
  16. /// </summary>
  17. public static readonly List<string> IgnoreFolders = new List<string>
  18. {
  19. "metadata",
  20. "ps3_update",
  21. "ps3_vprm",
  22. "extrafanart",
  23. "extrathumbs",
  24. ".actors",
  25. ".wd_tv"
  26. };
  27. }
  28. }