aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/IO/WindowsFileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-29 01:40:15 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-29 01:40:15 -0400
commit2729301bffb8b4a15c2228fee39717d80b123e60 (patch)
tree783fb50681cdf085ea6ea550e52d2ee970d198ea /Emby.Common.Implementations/IO/WindowsFileSystem.cs
parentce38e987910b4badb4c40844786449458b2d3229 (diff)
move common dependencies
Diffstat (limited to 'Emby.Common.Implementations/IO/WindowsFileSystem.cs')
-rw-r--r--Emby.Common.Implementations/IO/WindowsFileSystem.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Emby.Common.Implementations/IO/WindowsFileSystem.cs b/Emby.Common.Implementations/IO/WindowsFileSystem.cs
new file mode 100644
index 000000000..3eafeb2f7
--- /dev/null
+++ b/Emby.Common.Implementations/IO/WindowsFileSystem.cs
@@ -0,0 +1,13 @@
+using MediaBrowser.Model.Logging;
+
+namespace Emby.Common.Implementations.IO
+{
+ public class WindowsFileSystem : ManagedFileSystem
+ {
+ public WindowsFileSystem(ILogger logger)
+ : base(logger, true, true)
+ {
+ EnableFileSystemRequestConcat = false;
+ }
+ }
+}