IServerApplicationPaths.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 application resources path. This is the path to the folder containing resources that are deployed as part of the application
  13. /// For example, this folder contains dashboard-ui and swagger-ui
  14. /// </summary>
  15. /// <value>The application resources path.</value>
  16. string ApplicationResourcesPath { get; }
  17. /// <summary>
  18. /// Gets the path to the default user view directory. Used if no specific user view is defined.
  19. /// </summary>
  20. /// <value>The default user views path.</value>
  21. string DefaultUserViewsPath { get; }
  22. /// <summary>
  23. /// Gets the path to localization data.
  24. /// </summary>
  25. /// <value>The localization path.</value>
  26. string LocalizationPath { get; }
  27. /// <summary>
  28. /// Gets the path to the People directory
  29. /// </summary>
  30. /// <value>The people path.</value>
  31. string PeoplePath { get; }
  32. /// <summary>
  33. /// Gets the path to the Genre directory
  34. /// </summary>
  35. /// <value>The genre path.</value>
  36. string GenrePath { get; }
  37. /// <summary>
  38. /// Gets the music genre path.
  39. /// </summary>
  40. /// <value>The music genre path.</value>
  41. string MusicGenrePath { get; }
  42. /// <summary>
  43. /// Gets the game genre path.
  44. /// </summary>
  45. /// <value>The game genre path.</value>
  46. string GameGenrePath { get; }
  47. /// <summary>
  48. /// Gets the path to the Studio directory
  49. /// </summary>
  50. /// <value>The studio path.</value>
  51. string StudioPath { get; }
  52. /// <summary>
  53. /// Gets the path to the Year directory
  54. /// </summary>
  55. /// <value>The year path.</value>
  56. string YearPath { get; }
  57. /// <summary>
  58. /// Gets the path to the General IBN directory
  59. /// </summary>
  60. /// <value>The general path.</value>
  61. string GeneralPath { get; }
  62. /// <summary>
  63. /// Gets the path to the Ratings IBN directory
  64. /// </summary>
  65. /// <value>The ratings path.</value>
  66. string RatingsPath { get; }
  67. /// <summary>
  68. /// Gets the media info images path.
  69. /// </summary>
  70. /// <value>The media info images path.</value>
  71. string MediaInfoImagesPath { get; }
  72. /// <summary>
  73. /// Gets the path to the user configuration directory
  74. /// </summary>
  75. /// <value>The user configuration directory path.</value>
  76. string UserConfigurationDirectoryPath { get; }
  77. /// <summary>
  78. /// Gets the transcoding temporary path.
  79. /// </summary>
  80. /// <value>The transcoding temporary path.</value>
  81. string TranscodingTempPath { get; }
  82. /// <summary>
  83. /// Gets the internal metadata path.
  84. /// </summary>
  85. /// <value>The internal metadata path.</value>
  86. string InternalMetadataPath { get; }
  87. string VirtualInternalMetadataPath { get; }
  88. string ArtistsPath { get; }
  89. string GetTranscodingTempPath();
  90. }
  91. }