mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 01:05:19 +03:00
fixes #567 - Deprecate native shortcut code
This commit is contained in:
19
MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
Normal file
19
MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using MediaBrowser.Controller.IO;
|
||||
|
||||
namespace MediaBrowser.ServerApplication.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// Class FileSystemFactory
|
||||
/// </summary>
|
||||
public static class FileSystemFactory
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates the file system manager.
|
||||
/// </summary>
|
||||
/// <returns>IFileSystem.</returns>
|
||||
public static IFileSystem CreateFileSystemManager()
|
||||
{
|
||||
return new NativeFileSystem();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user