diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-12 00:54:19 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-12 00:54:19 -0400 |
| commit | 1991da85af51b8500d84d60c1b4c5b42ac0eb923 (patch) | |
| tree | 4f3d83fba518126817dc40c2c19c7716285b3f70 /MediaBrowser.Model/IO/IFileSystem.cs | |
| parent | fa132ada88973c540e99ff178c4a5ae42d40c753 (diff) | |
update setting of file attributes
Diffstat (limited to 'MediaBrowser.Model/IO/IFileSystem.cs')
| -rw-r--r-- | MediaBrowser.Model/IO/IFileSystem.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Model/IO/IFileSystem.cs b/MediaBrowser.Model/IO/IFileSystem.cs index 92112f4ae..ea6b04824 100644 --- a/MediaBrowser.Model/IO/IFileSystem.cs +++ b/MediaBrowser.Model/IO/IFileSystem.cs @@ -313,7 +313,8 @@ namespace MediaBrowser.Model.IO IEnumerable<string> GetFileSystemEntryPaths(string path, bool recursive = false); void SetHidden(string path, bool isHidden); - void SetReadOnly(string path, bool isHidden); + void SetReadOnly(string path, bool readOnly); + void SetAttributes(string path, bool isHidden, bool readOnly); char DirectorySeparatorChar { get; } |
