using System.Collections.Generic; using MediaBrowser.Common.IO; using MediaBrowser.Controller.IO; using MediaBrowser.Model.IO; namespace MediaBrowser.Controller.Providers { public interface IDirectoryService { IEnumerable GetFileSystemEntries(string path); IEnumerable GetFiles(string path); IEnumerable GetDirectories(string path); IEnumerable GetFiles(string path, bool clearCache); FileSystemMetadata GetFile(string path); Dictionary GetFileSystemDictionary(string path); } }