aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IFileSystem.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-04-02 00:46:26 -0400
committerGitHub <noreply@github.com>2017-04-02 00:46:26 -0400
commitc4a9dd3d262c880b8499e2f9b564d9ead99a7a22 (patch)
tree47077506324da6137d56e322299942ee6eeb9512 /MediaBrowser.Model/IO/IFileSystem.cs
parentb3640fbc9a0f7fd4a1def4e3c2f8860feb0f6922 (diff)
parent4a8960fc866143e7107a5bc41527db6c5581974f (diff)
Merge pull request #2562 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/IO/IFileSystem.cs')
-rw-r--r--MediaBrowser.Model/IO/IFileSystem.cs26
1 files changed, 2 insertions, 24 deletions
diff --git a/MediaBrowser.Model/IO/IFileSystem.cs b/MediaBrowser.Model/IO/IFileSystem.cs
index e791503ab..6773acbfa 100644
--- a/MediaBrowser.Model/IO/IFileSystem.cs
+++ b/MediaBrowser.Model/IO/IFileSystem.cs
@@ -312,7 +312,6 @@ namespace MediaBrowser.Model.IO
void SetReadOnly(string path, bool isHidden);
char DirectorySeparatorChar { get; }
- char PathSeparator { get; }
string GetFullPath(string path);
@@ -353,24 +352,7 @@ namespace MediaBrowser.Model.IO
// permission is required. If the file is opened with FileAccess.ReadWrite, both
// System.Security.Permissions.FileIOPermissionAccess.Read and System.Security.Permissions.FileIOPermissionAccess.Write
// permissions are required.
- OpenOrCreate = 4,
- //
- // Summary:
- // Specifies that the operating system should open an existing file. When the file
- // is opened, it should be truncated so that its size is zero bytes. This requires
- // System.Security.Permissions.FileIOPermissionAccess.Write permission. Attempts
- // to read from a file opened with FileMode.Truncate cause an System.ArgumentException
- // exception.
- Truncate = 5,
- //
- // Summary:
- // Opens the file if it exists and seeks to the end of the file, or creates a new
- // file. This requires System.Security.Permissions.FileIOPermissionAccess.Append
- // permission. FileMode.Append can be used only in conjunction with FileAccess.Write.
- // Trying to seek to a position before the end of the file throws an System.IO.IOException
- // exception, and any attempt to read fails and throws a System.NotSupportedException
- // exception.
- Append = 6
+ OpenOrCreate = 4
}
public enum FileAccessMode
@@ -384,11 +366,7 @@ namespace MediaBrowser.Model.IO
// Summary:
// Write access to the file. Data can be written to the file. Combine with Read
// for read/write access.
- Write = 2,
- //
- // Summary:
- // Read and write access to the file. Data can be written to and read from the file.
- ReadWrite = 3
+ Write = 2
}
public enum FileShareMode