aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-25 22:04:49 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-25 22:04:49 -0400
commitb30c58f82580a82586526114858fa0ca791f096e (patch)
tree5590b4536a495429acd3c11cd06d0fd2599aad9b /MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs
parent675b6431151438d217b904fb17084832e95d7656 (diff)
retarget dashboard project
Diffstat (limited to 'MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs')
-rw-r--r--MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs b/MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs
index 34d2ddbad..ffb1e4234 100644
--- a/MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs
+++ b/MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs
@@ -49,6 +49,19 @@ namespace MediaBrowser.Common.Implementations.IO
}
}
+ public char DirectorySeparatorChar
+ {
+ get
+ {
+ return Path.DirectorySeparatorChar;
+ }
+ }
+
+ public string GetFullPath(string path)
+ {
+ return Path.GetFullPath(path);
+ }
+
/// <summary>
/// Determines whether the specified filename is shortcut.
/// </summary>