mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 18:54:48 +03:00
make controller project portable
This commit is contained in:
14
MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
Normal file
14
MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
Normal file
@@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user