aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IFileSystem.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-09-04 08:16:49 -0600
committercrobibero <cody@robibe.ro>2020-09-04 08:16:49 -0600
commit2a8653b3094d967e55b8bd012429d523629cdb38 (patch)
tree480ee90c8e3adcc49e1c97e4d1953483589d1889 /MediaBrowser.Model/IO/IFileSystem.cs
parent82f30a35dbbb52dc069d027c9a3af7fc3bbb3100 (diff)
parent559a7fc336a022c92f63a8d77b6eb3c2f915c290 (diff)
Merge remote-tracking branch 'upstream/master' into http-client-migrate
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);
}
}