aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-25 15:02:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-25 15:02:04 -0400
commitef6b90b8e6e6c317fcda85a392c79324f91250db (patch)
tree570c78c0915d3608399f003038b66d56e5e29e84 /MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
parentedbe28d9fc3091121b7e2323fe42d62a70c9e351 (diff)
make controller project portable
Diffstat (limited to 'MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs')
-rw-r--r--MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs b/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
new file mode 100644
index 000000000..e8f8de8ae
--- /dev/null
+++ b/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
@@ -0,0 +1,14 @@
+using Patterns.Logging;
+
+namespace MediaBrowser.Common.Implementations.IO
+{
+ public class WindowsFileSystem : ManagedFileSystem
+ {
+ public WindowsFileSystem(ILogger logger)
+ : base(logger, true, true)
+ {
+ AddShortcutHandler(new LnkShortcutHandler());
+ EnableFileSystemRequestConcat = false;
+ }
+ }
+}