diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-23 10:58:08 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-23 10:58:08 -0500 |
| commit | 17c1fd576057bdd2d6aea517d733fe8af6e6b2ba (patch) | |
| tree | 660f47e816a8599aabdb7ee47f3cde64c72c3f4d /MediaBrowser.UI/Configuration/UIApplicationPaths.cs | |
| parent | 33ed929b526acbda696f00f5966917ebd6a9ded2 (diff) | |
moved ui to it's own repo
Diffstat (limited to 'MediaBrowser.UI/Configuration/UIApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.UI/Configuration/UIApplicationPaths.cs | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/MediaBrowser.UI/Configuration/UIApplicationPaths.cs b/MediaBrowser.UI/Configuration/UIApplicationPaths.cs deleted file mode 100644 index 313c310d3..000000000 --- a/MediaBrowser.UI/Configuration/UIApplicationPaths.cs +++ /dev/null @@ -1,37 +0,0 @@ -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; - } - } - } -} |
