IServerApplicationPaths.cs 2.8 KB

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