aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IFileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-04-01 20:36:06 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-04-01 20:36:06 -0400
commit733b891f529c2458d65560f556edf68052be2846 (patch)
tree4c6de5d23e73f8fea02513a6936bdb01a39e7b62 /MediaBrowser.Model/IO/IFileSystem.cs
parentd4d6314c5ac4515ad8ddf7c8636245ed2d93d4c8 (diff)
stub out cifs support
Diffstat (limited to 'MediaBrowser.Model/IO/IFileSystem.cs')
-rw-r--r--MediaBrowser.Model/IO/IFileSystem.cs25
1 files changed, 2 insertions, 23 deletions
diff --git a/MediaBrowser.Model/IO/IFileSystem.cs b/MediaBrowser.Model/IO/IFileSystem.cs
index e791503ab..59e31debd 100644
--- a/MediaBrowser.Model/IO/IFileSystem.cs
+++ b/MediaBrowser.Model/IO/IFileSystem.cs
@@ -353,24 +353,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 +367,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