IServerApplicationPaths.cs 3.0 KB

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