aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/IDirectoryService.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2022-02-28 16:16:25 -0700
committerCody Robibero <cody@robibe.ro>2022-02-28 17:14:33 -0700
commitfc5c6c0404b06accb3617c0d4f181bb7c344119c (patch)
treeb7cb3d3ac444aca21fe4a1f360325c2951339fee /MediaBrowser.Controller/Providers/IDirectoryService.cs
parent1d367712bb2ec87a1d36f9b23deb2c0ad5fa7279 (diff)
Use IFileSystem
Diffstat (limited to 'MediaBrowser.Controller/Providers/IDirectoryService.cs')
-rw-r--r--MediaBrowser.Controller/Providers/IDirectoryService.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Providers/IDirectoryService.cs b/MediaBrowser.Controller/Providers/IDirectoryService.cs
index e5428a035..48d627691 100644
--- a/MediaBrowser.Controller/Providers/IDirectoryService.cs
+++ b/MediaBrowser.Controller/Providers/IDirectoryService.cs
@@ -16,12 +16,5 @@ namespace MediaBrowser.Controller.Providers
IReadOnlyList<string> GetFilePaths(string path);
IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false);
-
- /// <summary>
- /// Does the path exist.
- /// </summary>
- /// <param name="path">The path.</param>
- /// <returns>Whether the path exists.</returns>
- bool PathExists(string path);
}
}