mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
14 lines
365 B
C#
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;
|
|
}
|
|
}
|
|
}
|