diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-03-29 02:27:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-29 02:27:52 -0400 |
| commit | cae9dfc1c990b6fc769f3a79c4bfe9122c3b256a (patch) | |
| tree | 34d6c2fcf7da3d9b5e098328b0c79073947a9fe9 /MediaBrowser.Controller/Providers/DirectoryService.cs | |
| parent | 9f9e81089f5606e958bc8c3f0e4d73475d02372a (diff) | |
| parent | f6b94af438da8f8d3b3760c3e67eb24b09bafbfd (diff) | |
Merge pull request #2555 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/Providers/DirectoryService.cs')
| -rw-r--r-- | MediaBrowser.Controller/Providers/DirectoryService.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Providers/DirectoryService.cs b/MediaBrowser.Controller/Providers/DirectoryService.cs index 01218c293..40093df3a 100644 --- a/MediaBrowser.Controller/Providers/DirectoryService.cs +++ b/MediaBrowser.Controller/Providers/DirectoryService.cs @@ -103,6 +103,16 @@ namespace MediaBrowser.Controller.Providers return GetFileSystemEntries(path, clearCache).Where(i => !i.IsDirectory); } + public IEnumerable<string> GetFilePaths(string path) + { + return _fileSystem.GetFilePaths(path); + } + + public IEnumerable<string> GetFilePaths(string path, bool clearCache) + { + return _fileSystem.GetFilePaths(path); + } + public FileSystemMetadata GetFile(string path) { FileSystemMetadata file; |
