diff options
Diffstat (limited to 'MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/IO/ManagedFileSystem.cs | 13 |
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> |
