mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 10:44:50 +03:00
15 lines
365 B
C#
15 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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|