From b443d591a29bc18daea36a3871908a4c1c277990 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 28 Apr 2013 01:29:27 -0400 Subject: fixes #200 - MB3 Locking Folders for a long time --- MediaBrowser.Controller/Library/ILibraryManager.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 060f52e37e..a456ee24c4 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -1,4 +1,5 @@ -using MediaBrowser.Controller.Entities; +using System.IO; +using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Entities.Audio; using MediaBrowser.Controller.IO; using MediaBrowser.Controller.Resolvers; @@ -40,7 +41,7 @@ namespace MediaBrowser.Controller.Library /// The file info. /// BaseItem. /// - BaseItem ResolvePath(string path, Folder parent = null, WIN32_FIND_DATA? fileInfo = null); + BaseItem ResolvePath(string path, Folder parent = null, FileSystemInfo fileInfo = null); /// /// Resolves a set of files into a list of BaseItem @@ -49,7 +50,7 @@ namespace MediaBrowser.Controller.Library /// The files. /// The parent. /// List{``0}. - List ResolvePaths(IEnumerable files, Folder parent) + List ResolvePaths(IEnumerable files, Folder parent) where T : BaseItem; /// -- cgit v1.2.3