IServerApplicationPaths.cs 3.2 KB

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