aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-30 10:40:14 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-30 10:40:14 -0400
commitbe7918e5f68f67ed32a50c2d86ee9cae79cf2b93 (patch)
treeb27b8be23f3771e77c6e3d41b1fec58b682c4891 /MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
parentcbd6c47af49145f3136cab9858b87ce98df9071a (diff)
fixes #567 - Deprecate native shortcut code
Diffstat (limited to 'MediaBrowser.ServerApplication/IO/FileSystemFactory.cs')
-rw-r--r--MediaBrowser.ServerApplication/IO/FileSystemFactory.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs b/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
new file mode 100644
index 000000000..78a9338a4
--- /dev/null
+++ b/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
@@ -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();
+ }
+ }
+}