aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IFileSystem.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-08-31 22:20:19 +0200
committerBond_009 <bond.009@outlook.com>2020-08-31 22:20:19 +0200
commite653eef44ff5dd7e568816d43b9e0d50b2293387 (patch)
tree998b88836c4c07c2c21a2e61e6b89c1bba0dce2d /MediaBrowser.Model/IO/IFileSystem.cs
parent5c50d5356c2779dfa980df1acd62d3e6ca41f198 (diff)
Fix some warnings
Diffstat (limited to 'MediaBrowser.Model/IO/IFileSystem.cs')
-rw-r--r--MediaBrowser.Model/IO/IFileSystem.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/IO/IFileSystem.cs b/MediaBrowser.Model/IO/IFileSystem.cs
index bba69d4b4..dc6549787 100644
--- a/MediaBrowser.Model/IO/IFileSystem.cs
+++ b/MediaBrowser.Model/IO/IFileSystem.cs
@@ -201,9 +201,9 @@ namespace MediaBrowser.Model.IO
IEnumerable<string> GetFileSystemEntryPaths(string path, bool recursive = false);
void SetHidden(string path, bool isHidden);
- void SetReadOnly(string path, bool readOnly);
+
void SetAttributes(string path, bool isHidden, bool readOnly);
+
List<FileSystemMetadata> GetDrives();
- void SetExecutable(string path);
}
}