IServerApplicationPaths.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using MediaBrowser.Common.Kernel;
  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 localization data.
  18. /// </summary>
  19. /// <value>The localization path.</value>
  20. string LocalizationPath { get; }
  21. /// <summary>
  22. /// Gets the path to the Images By Name directory
  23. /// </summary>
  24. /// <value>The images by name path.</value>
  25. string ImagesByNamePath { 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 path to the Studio directory
  38. /// </summary>
  39. /// <value>The studio path.</value>
  40. string StudioPath { get; }
  41. /// <summary>
  42. /// Gets the path to the Year directory
  43. /// </summary>
  44. /// <value>The year path.</value>
  45. string YearPath { get; }
  46. /// <summary>
  47. /// Gets the path to the General IBN directory
  48. /// </summary>
  49. /// <value>The general path.</value>
  50. string GeneralPath { get; }
  51. /// <summary>
  52. /// Gets the path to the Ratings IBN directory
  53. /// </summary>
  54. /// <value>The ratings path.</value>
  55. string RatingsPath { 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 FF MPEG stream cache path.
  63. /// </summary>
  64. /// <value>The FF MPEG stream cache path.</value>
  65. string FFMpegStreamCachePath { get; }
  66. /// <summary>
  67. /// Gets the folder path to tools
  68. /// </summary>
  69. /// <value>The media tools path.</value>
  70. string MediaToolsPath { get; }
  71. }
  72. }