IServerApplicationPaths.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. using System.Collections.Generic;
  5. using System.IO;
  6. using System.Linq;
  7. using MediaBrowser.Common.Configuration;
  8. namespace MediaBrowser.Controller
  9. {
  10. public interface IServerApplicationPaths : IApplicationPaths
  11. {
  12. /// <summary>
  13. /// Gets the path to the base root media directory.
  14. /// </summary>
  15. /// <value>The root folder path.</value>
  16. string RootFolderPath { 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 the People directory.
  24. /// </summary>
  25. /// <value>The people path.</value>
  26. string PeoplePath { get; }
  27. /// <summary>
  28. /// Gets the path to the Genre directory.
  29. /// </summary>
  30. /// <value>The genre path.</value>
  31. string GenrePath { get; }
  32. /// <summary>
  33. /// Gets the music genre path.
  34. /// </summary>
  35. /// <value>The music genre path.</value>
  36. string MusicGenrePath { 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 user configuration directory.
  49. /// </summary>
  50. /// <value>The user configuration directory path.</value>
  51. string UserConfigurationDirectoryPath { get; }
  52. /// <summary>
  53. /// Gets the default internal metadata path.
  54. /// </summary>
  55. string DefaultInternalMetadataPath { get; }
  56. /// <summary>
  57. /// Gets the internal metadata path, either a custom path or the default.
  58. /// </summary>
  59. /// <value>The internal metadata path.</value>
  60. string InternalMetadataPath { get; }
  61. /// <summary>
  62. /// Gets the virtual internal metadata path, either a custom path or the default.
  63. /// </summary>
  64. /// <value>The virtual internal metadata path.</value>
  65. string VirtualInternalMetadataPath { get; }
  66. /// <summary>
  67. /// Gets the path to the artists directory.
  68. /// </summary>
  69. /// <value>The artists path.</value>
  70. string ArtistsPath { get; }
  71. }
  72. }