diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-11-05 16:51:23 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-11-05 16:51:23 -0500 |
| commit | 5cb74690284105db70a467ab77c2af3f44e42348 (patch) | |
| tree | 0e37b05d34dbcbe3d08d0c74229287cd0cd6f496 /MediaBrowser.Controller/Providers/IDirectoryService.cs | |
| parent | b9c1f61681de23d95de7c6b392eb3e55670991da (diff) | |
support track selection before playback
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 6f864f4be..0b4574f6e 100644 --- a/MediaBrowser.Controller/Providers/IDirectoryService.cs +++ b/MediaBrowser.Controller/Providers/IDirectoryService.cs @@ -8,5 +8,8 @@ namespace MediaBrowser.Controller.Providers 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); } }
\ No newline at end of file |
