aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs')
-rw-r--r--MediaBrowser.Server.Implementations/ServerApplicationPaths.cs28
1 files changed, 27 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
index ff29badff..429c893ca 100644
--- a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
+++ b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
@@ -302,7 +302,7 @@ namespace MediaBrowser.Server.Implementations
/// Gets the FF MPEG stream cache path.
/// </summary>
/// <value>The FF MPEG stream cache path.</value>
- public string FFMpegStreamCachePath
+ public string EncodedMediaCachePath
{
get
{
@@ -345,5 +345,31 @@ namespace MediaBrowser.Server.Implementations
return _mediaToolsPath;
}
}
+
+ /// <summary>
+ /// The _images data path
+ /// </summary>
+ private string _downloadedImagesDataPath;
+ /// <summary>
+ /// Gets the images data path.
+ /// </summary>
+ /// <value>The images data path.</value>
+ public string DownloadedImagesDataPath
+ {
+ get
+ {
+ if (_downloadedImagesDataPath == null)
+ {
+ _downloadedImagesDataPath = Path.Combine(DataPath, "remote-images");
+
+ if (!Directory.Exists(_downloadedImagesDataPath))
+ {
+ Directory.CreateDirectory(_downloadedImagesDataPath);
+ }
+ }
+
+ return _downloadedImagesDataPath;
+ }
+ }
}
}