jellyfin/MediaBrowser.Controller/IServerApplicationPaths.cs

109 lines
3.3 KiB
C#
Raw Normal View History

2013-03-04 06:43:06 +01:00
using MediaBrowser.Common.Configuration;
2013-02-24 22:53:54 +01:00
namespace MediaBrowser.Controller
{
public interface IServerApplicationPaths : IApplicationPaths
{
/// <summary>
/// Gets the path to the base root media directory
/// </summary>
/// <value>The root folder path.</value>
string RootFolderPath { get; }
/// <summary>
/// Gets the path to the default user view directory. Used if no specific user view is defined.
/// </summary>
/// <value>The default user views path.</value>
string DefaultUserViewsPath { get; }
/// <summary>
/// Gets the path to localization data.
/// </summary>
/// <value>The localization path.</value>
string LocalizationPath { get; }
/// <summary>
/// Gets the path to the Images By Name directory
/// </summary>
/// <value>The images by name path.</value>
2013-12-15 02:17:57 +01:00
string ItemsByNamePath { get; }
2013-02-24 22:53:54 +01:00
/// <summary>
/// Gets the path to the People directory
/// </summary>
/// <value>The people path.</value>
string PeoplePath { get; }
/// <summary>
/// Gets the path to the Genre directory
/// </summary>
/// <value>The genre path.</value>
string GenrePath { get; }
2013-06-11 05:31:00 +02:00
/// <summary>
/// Gets the music genre path.
/// </summary>
/// <value>The music genre path.</value>
string MusicGenrePath { get; }
2013-07-01 19:17:33 +02:00
/// <summary>
/// Gets the game genre path.
/// </summary>
/// <value>The game genre path.</value>
string GameGenrePath { get; }
2013-12-15 02:17:57 +01:00
/// <summary>
/// Gets the artists path.
/// </summary>
/// <value>The artists path.</value>
string ArtistsPath { get; }
2013-12-15 02:17:57 +01:00
2013-02-24 22:53:54 +01:00
/// <summary>
/// Gets the path to the Studio directory
/// </summary>
/// <value>The studio path.</value>
string StudioPath { get; }
/// <summary>
/// Gets the path to the Year directory
/// </summary>
/// <value>The year path.</value>
string YearPath { get; }
/// <summary>
/// Gets the path to the General IBN directory
/// </summary>
/// <value>The general path.</value>
string GeneralPath { get; }
/// <summary>
/// Gets the path to the Ratings IBN directory
/// </summary>
/// <value>The ratings path.</value>
string RatingsPath { get; }
2013-05-02 16:30:38 +02:00
/// <summary>
/// Gets the media info images path.
/// </summary>
/// <value>The media info images path.</value>
string MediaInfoImagesPath { get; }
2013-12-15 02:17:57 +01:00
2013-02-24 22:53:54 +01:00
/// <summary>
/// Gets the path to the user configuration directory
/// </summary>
/// <value>The user configuration directory path.</value>
string UserConfigurationDirectoryPath { get; }
/// <summary>
/// Gets the FF MPEG stream cache path.
/// </summary>
/// <value>The FF MPEG stream cache path.</value>
string EncodedMediaCachePath { get; }
2013-02-24 22:53:54 +01:00
/// <summary>
/// Gets the downloaded images data path.
/// </summary>
/// <value>The downloaded images data path.</value>
string DownloadedImagesDataPath { get; }
2013-02-24 22:53:54 +01:00
}
}