aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
blob: db386c682251c8ff890c36b90d80507bd12738ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using MediaBrowser.Model.Logging;

namespace MediaBrowser.Common.Implementations.IO
{
    public class WindowsFileSystem : ManagedFileSystem
    {
        public WindowsFileSystem(ILogger logger)
            : base(logger, true, true)
        {
            EnableFileSystemRequestConcat = false;
        }
    }
}