diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-05-12 01:09:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-12 01:09:16 -0400 |
| commit | 275fe6622056d134fdf4737319507c4c51d3f389 (patch) | |
| tree | 5fb9b96bf0aa3be26dec14313057383af71d5824 /MediaBrowser.Model/IO/IFileSystem.cs | |
| parent | e06563831e0f7a5e9a6120ab16decb05a0cde8f7 (diff) | |
| parent | 911de889b1e941c29ee0d7ff68d728fc009b745f (diff) | |
Merge pull request #2630 from MediaBrowser/dev
Dev
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; } |
