diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-30 19:15:58 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-30 19:15:58 -0400 |
| commit | 579b507f7fa322fdf8a746b6e787015d0567e2a6 (patch) | |
| tree | 2e5c0d4a76e65d2928f4da9f2a625bfef4844640 /MediaBrowser.ServerApplication/IO/NativeFileSystem.cs | |
| parent | d5baaa1f67975c21417ebaaa193e17192e1c3936 (diff) | |
use IFileSystem interface to get creation time
Diffstat (limited to 'MediaBrowser.ServerApplication/IO/NativeFileSystem.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/IO/NativeFileSystem.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/IO/NativeFileSystem.cs b/MediaBrowser.ServerApplication/IO/NativeFileSystem.cs index b5ceec619..0101b4249 100644 --- a/MediaBrowser.ServerApplication/IO/NativeFileSystem.cs +++ b/MediaBrowser.ServerApplication/IO/NativeFileSystem.cs @@ -1,4 +1,5 @@ -using System; +using MediaBrowser.Model.Logging; +using System; using System.IO; using System.Runtime.InteropServices; using System.Security; @@ -8,6 +9,11 @@ namespace MediaBrowser.ServerApplication.IO { public class NativeFileSystem : CommonFileSystem { + public NativeFileSystem(ILogger logger) + : base(logger) + { + } + public override bool IsShortcut(string filename) { return base.IsShortcut(filename) || |
