diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-03-18 17:43:15 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-18 17:43:15 +0900 |
| commit | a96c0a72b8574c563a91c7d5cf8aaf2541efe201 (patch) | |
| tree | e7757b1d1b7bf74cedbd4d1ffc5a4db122739f65 /MediaBrowser.Controller/Providers/IDirectoryService.cs | |
| parent | 3e3470e50358977759bb6edcde4fe1844806b71c (diff) | |
| parent | 4f195f289cb4c63d067b50a34d0f63848e7911d5 (diff) | |
Merge pull request #2549 from dkanada/refactor
Refactor some provider classes
Diffstat (limited to 'MediaBrowser.Controller/Providers/IDirectoryService.cs')
| -rw-r--r-- | MediaBrowser.Controller/Providers/IDirectoryService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Providers/IDirectoryService.cs b/MediaBrowser.Controller/Providers/IDirectoryService.cs index 8059d2bd1..b304fc335 100644 --- a/MediaBrowser.Controller/Providers/IDirectoryService.cs +++ b/MediaBrowser.Controller/Providers/IDirectoryService.cs @@ -6,10 +6,13 @@ namespace MediaBrowser.Controller.Providers public interface IDirectoryService { FileSystemMetadata[] GetFileSystemEntries(string path); + List<FileSystemMetadata> GetFiles(string path); + FileSystemMetadata GetFile(string path); List<string> GetFilePaths(string path); + List<string> GetFilePaths(string path, bool clearCache); } } |
