diff options
Diffstat (limited to 'MediaBrowser.Model/IO')
| -rw-r--r-- | MediaBrowser.Model/IO/IFileSystem.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/MediaBrowser.Model/IO/IFileSystem.cs b/MediaBrowser.Model/IO/IFileSystem.cs index 234d96369..786b20e9e 100644 --- a/MediaBrowser.Model/IO/IFileSystem.cs +++ b/MediaBrowser.Model/IO/IFileSystem.cs @@ -202,10 +202,17 @@ namespace MediaBrowser.Model.IO IEnumerable<FileSystemMetadata> GetDrives(); /// <summary> - /// Determines whether the directory or file exists. + /// Determines whether the directory exists. /// </summary> /// <param name="path">The path.</param> /// <returns>Whether the path exists.</returns> - bool Exists(string path); + bool DirectoryExists(string path); + + /// <summary> + /// Determines whether the file exists. + /// </summary> + /// <param name="path">The path.</param> + /// <returns>Whether the path exists.</returns> + bool FileExists(string path); } } |
