Pushing missing changes

This commit is contained in:
LukePulverenti
2013-02-20 20:33:05 -05:00
parent 845554722e
commit 767cdc1f6f
924 changed files with 103121 additions and 18677 deletions

View File

@@ -1,8 +1,37 @@
using MediaBrowser.Common.Kernel;
namespace MediaBrowser.UI.Configuration
{
public class UIApplicationPaths : BaseApplicationPaths
{
}
}
using MediaBrowser.Common.Kernel;
using System.IO;
namespace MediaBrowser.UI.Configuration
{
/// <summary>
/// Class UIApplicationPaths
/// </summary>
public class UIApplicationPaths : BaseApplicationPaths
{
/// <summary>
/// The _remote image cache path
/// </summary>
private string _remoteImageCachePath;
/// <summary>
/// Gets the remote image cache path.
/// </summary>
/// <value>The remote image cache path.</value>
public string RemoteImageCachePath
{
get
{
if (_remoteImageCachePath == null)
{
_remoteImageCachePath = Path.Combine(CachePath, "remote-images");
if (!Directory.Exists(_remoteImageCachePath))
{
Directory.CreateDirectory(_remoteImageCachePath);
}
}
return _remoteImageCachePath;
}
}
}
}