diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-29 01:40:15 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-29 01:40:15 -0400 |
| commit | 2729301bffb8b4a15c2228fee39717d80b123e60 (patch) | |
| tree | 783fb50681cdf085ea6ea550e52d2ee970d198ea /Emby.Common.Implementations/IO/WindowsFileSystem.cs | |
| parent | ce38e987910b4badb4c40844786449458b2d3229 (diff) | |
move common dependencies
Diffstat (limited to 'Emby.Common.Implementations/IO/WindowsFileSystem.cs')
| -rw-r--r-- | Emby.Common.Implementations/IO/WindowsFileSystem.cs | 13 |
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; + } + } +} |
