2
0

IServerApplicationPaths.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 user configuration directory.
  45. /// </summary>
  46. /// <value>The user configuration directory path.</value>
  47. string UserConfigurationDirectoryPath { get; }
  48. /// <summary>
  49. /// Gets the default internal metadata path.
  50. /// </summary>
  51. string DefaultInternalMetadataPath { get; }
  52. /// <summary>
  53. /// Gets the internal metadata path, either a custom path or the default.
  54. /// </summary>
  55. /// <value>The internal metadata path.</value>
  56. string InternalMetadataPath { get; }
  57. /// <summary>
  58. /// Gets the virtual internal metadata path, either a custom path or the default.
  59. /// </summary>
  60. /// <value>The virtual internal metadata path.</value>
  61. string VirtualInternalMetadataPath { get; }
  62. /// <summary>
  63. /// Gets the path to the artists directory.
  64. /// </summary>
  65. /// <value>The artists path.</value>
  66. string ArtistsPath { get; }
  67. }
  68. }