jellyfin/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs

15 lines
365 B
C#
Raw Normal View History

2016-10-25 19:02:04 +00:00
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;
}
}
}