aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
blob: 78a9338a4ae97825ae1e0a8b1546082441d922be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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();
        }
    }
}