using System.Collections.Generic; using System.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); FileSystemInfo GetFile(string path); Dictionary GetFileSystemDictionary(string path); } }