IServerApplicationPaths.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using MediaBrowser.Common.Configuration;
  4. namespace MediaBrowser.Controller
  5. {
  6. public interface IServerApplicationPaths : IApplicationPaths
  7. {
  8. /// <summary>
  9. /// Gets the path to the base root media directory.
  10. /// </summary>
  11. /// <value>The root folder path.</value>
  12. string RootFolderPath { get; }
  13. /// <summary>
  14. /// Gets the path to the default user view directory. Used if no specific user view is defined.
  15. /// </summary>
  16. /// <value>The default user views path.</value>
  17. string DefaultUserViewsPath { get; }
  18. /// <summary>
  19. /// Gets the path to the People directory.
  20. /// </summary>
  21. /// <value>The people path.</value>
  22. string PeoplePath { get; }
  23. /// <summary>
  24. /// Gets the path to the Genre directory.
  25. /// </summary>
  26. /// <value>The genre path.</value>
  27. string GenrePath { get; }
  28. /// <summary>
  29. /// Gets the music genre path.
  30. /// </summary>
  31. /// <value>The music genre path.</value>
  32. string MusicGenrePath { get; }
  33. /// <summary>
  34. /// Gets the path to the Studio directory.
  35. /// </summary>
  36. /// <value>The studio path.</value>
  37. string StudioPath { get; }
  38. /// <summary>
  39. /// Gets the path to the Year directory.
  40. /// </summary>
  41. /// <value>The year path.</value>
  42. string YearPath { get; }
  43. /// <summary>
  44. /// Gets the path to the General IBN directory.
  45. /// </summary>
  46. /// <value>The general path.</value>
  47. string GeneralPath { get; }
  48. /// <summary>
  49. /// Gets the path to the Ratings IBN directory.
  50. /// </summary>
  51. /// <value>The ratings path.</value>
  52. string RatingsPath { get; }
  53. /// <summary>
  54. /// Gets the media info images path.
  55. /// </summary>
  56. /// <value>The media info images path.</value>
  57. string MediaInfoImagesPath { get; }
  58. /// <summary>
  59. /// Gets the path to the user configuration directory.
  60. /// </summary>
  61. /// <value>The user configuration directory path.</value>
  62. string UserConfigurationDirectoryPath { get; }
  63. /// <summary>
  64. /// Gets the default internal metadata path.
  65. /// </summary>
  66. string DefaultInternalMetadataPath { get; }
  67. /// <summary>
  68. /// Gets the internal metadata path, either a custom path or the default.
  69. /// </summary>
  70. /// <value>The internal metadata path.</value>
  71. string InternalMetadataPath { get; }
  72. /// <summary>
  73. /// Gets the virtual internal metadata path, either a custom path or the default.
  74. /// </summary>
  75. /// <value>The virtual internal metadata path.</value>
  76. string VirtualInternalMetadataPath { get; }
  77. /// <summary>
  78. /// Gets the path to the artists directory.
  79. /// </summary>
  80. /// <value>The artists path.</value>
  81. string ArtistsPath { get; }
  82. }
  83. }