IServerApplicationPaths.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. using MediaBrowser.Common.Configuration;
  2. using MediaBrowser.Common.Kernel;
  3. namespace MediaBrowser.Controller
  4. {
  5. public interface IServerApplicationPaths : IApplicationPaths
  6. {
  7. /// <summary>
  8. /// Gets the path to the base root media directory
  9. /// </summary>
  10. /// <value>The root folder path.</value>
  11. string RootFolderPath { get; }
  12. /// <summary>
  13. /// Gets the path to the default user view directory. Used if no specific user view is defined.
  14. /// </summary>
  15. /// <value>The default user views path.</value>
  16. string DefaultUserViewsPath { get; }
  17. /// <summary>
  18. /// Gets the path to localization data.
  19. /// </summary>
  20. /// <value>The localization path.</value>
  21. string LocalizationPath { get; }
  22. /// <summary>
  23. /// Gets the path to the Images By Name directory
  24. /// </summary>
  25. /// <value>The images by name path.</value>
  26. string ImagesByNamePath { 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 path to the Studio directory
  39. /// </summary>
  40. /// <value>The studio path.</value>
  41. string StudioPath { get; }
  42. /// <summary>
  43. /// Gets the path to the Year directory
  44. /// </summary>
  45. /// <value>The year path.</value>
  46. string YearPath { get; }
  47. /// <summary>
  48. /// Gets the path to the General IBN directory
  49. /// </summary>
  50. /// <value>The general path.</value>
  51. string GeneralPath { get; }
  52. /// <summary>
  53. /// Gets the path to the Ratings IBN directory
  54. /// </summary>
  55. /// <value>The ratings path.</value>
  56. string RatingsPath { get; }
  57. /// <summary>
  58. /// Gets the path to the user configuration directory
  59. /// </summary>
  60. /// <value>The user configuration directory path.</value>
  61. string UserConfigurationDirectoryPath { get; }
  62. /// <summary>
  63. /// Gets the FF MPEG stream cache path.
  64. /// </summary>
  65. /// <value>The FF MPEG stream cache path.</value>
  66. string FFMpegStreamCachePath { get; }
  67. /// <summary>
  68. /// Gets the folder path to tools
  69. /// </summary>
  70. /// <value>The media tools path.</value>
  71. string MediaToolsPath { get; }
  72. }
  73. }