IDirectoryService.cs 500 B

1234567891011121314151617181920
  1. #pragma warning disable CS1591
  2. using System.Collections.Generic;
  3. using MediaBrowser.Model.IO;
  4. namespace MediaBrowser.Controller.Providers
  5. {
  6. public interface IDirectoryService
  7. {
  8. FileSystemMetadata[] GetFileSystemEntries(string path);
  9. List<FileSystemMetadata> GetFiles(string path);
  10. FileSystemMetadata? GetFile(string path);
  11. IReadOnlyList<string> GetFilePaths(string path);
  12. IReadOnlyList<string> GetFilePaths(string path, bool clearCache);
  13. }
  14. }