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