From 6c8d9192985036acb3d1fe626ed57980bb862d6a Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 31 Oct 2013 10:03:23 -0400 Subject: replace file system calls with IFileSystem when needed --- MediaBrowser.Controller/IO/IFileSystem.cs | 53 ------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 MediaBrowser.Controller/IO/IFileSystem.cs (limited to 'MediaBrowser.Controller/IO/IFileSystem.cs') diff --git a/MediaBrowser.Controller/IO/IFileSystem.cs b/MediaBrowser.Controller/IO/IFileSystem.cs deleted file mode 100644 index cbc5c7bf3..000000000 --- a/MediaBrowser.Controller/IO/IFileSystem.cs +++ /dev/null @@ -1,53 +0,0 @@ -using System; -using System.IO; - -namespace MediaBrowser.Controller.IO -{ - /// - /// Interface IFileSystem - /// - public interface IFileSystem - { - /// - /// Determines whether the specified filename is shortcut. - /// - /// The filename. - /// true if the specified filename is shortcut; otherwise, false. - bool IsShortcut(string filename); - - /// - /// Resolves the shortcut. - /// - /// The filename. - /// System.String. - string ResolveShortcut(string filename); - - /// - /// Creates the shortcut. - /// - /// The shortcut path. - /// The target. - void CreateShortcut(string shortcutPath, string target); - - /// - /// Gets the file system info. - /// - /// The path. - /// FileSystemInfo. - FileSystemInfo GetFileSystemInfo(string path); - - /// - /// Gets the valid filename. - /// - /// The filename. - /// System.String. - string GetValidFilename(string filename); - - /// - /// Gets the creation time UTC. - /// - /// The info. - /// DateTime. - DateTime GetCreationTimeUtc(FileSystemInfo info); - } -} -- cgit v1.2.3