aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
blob: e8f8de8aef2bcf6c4147dc4de55a9f990eea928f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
        }
    }
}