using System.Collections.Generic; using CommonIO; 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); } }