jellyfin/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
2016-10-25 15:02:04 -04:00

14 lines
365 B
C#

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;
}
}
}