aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/IDirectoryService.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2024-06-27 09:45:56 +0200
committerGitHub <noreply@github.com>2024-06-27 09:45:56 +0200
commit79e9fe112cbe53e63123a0d0ece09f88ac158286 (patch)
tree5ba02852b9505450b604396ddf043047649e8aae /MediaBrowser.Controller/Providers/IDirectoryService.cs
parent970386bd9ab57d98fe5469f5cff3d6aff38a8d8b (diff)
parent9b7da736ed1363f01528d7dfd1b7daa15039fa94 (diff)
Merge pull request #11204 from revam/fix-resolver-helper-init-values
Don't expect `BaseItem` to be a movie/video file.
Diffstat (limited to 'MediaBrowser.Controller/Providers/IDirectoryService.cs')
-rw-r--r--MediaBrowser.Controller/Providers/IDirectoryService.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Providers/IDirectoryService.cs b/MediaBrowser.Controller/Providers/IDirectoryService.cs
index a3c06cde5..1babf73af 100644
--- a/MediaBrowser.Controller/Providers/IDirectoryService.cs
+++ b/MediaBrowser.Controller/Providers/IDirectoryService.cs
@@ -15,6 +15,10 @@ namespace MediaBrowser.Controller.Providers
FileSystemMetadata? GetFile(string path);
+ FileSystemMetadata? GetDirectory(string path);
+
+ FileSystemMetadata? GetFileSystemEntry(string path);
+
IReadOnlyList<string> GetFilePaths(string path);
IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false);