mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-17 15:46:22 +00:00
stub out cifs support
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user