aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IFileSystem.cs
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2020-09-04 11:44:15 +0200
committerGitHub <noreply@github.com>2020-09-04 11:44:15 +0200
commit81c764e87f52771a20e66af2d1c65245f2202925 (patch)
tree4338d54bc75b563e6931d7642d882ceb89224e88 /MediaBrowser.Model/IO/IFileSystem.cs
parent1d3303fa0a4a106dc74065ed37f9353ef763a52a (diff)
parent250216cc5335ec79c789987dc5dcef0243d548eb (diff)
Merge branch 'master' into output-formatters
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);
}
}