[Flags] |
A FileShare parameter is specified in some of the constructors for FileStream, IsolatedStorageFileStream, and in some of the Open methods of File and FileInfo to control how a file is opened.
FileStream s2 = new FileStream(name, FileMode.Open, FileAccess.Read, FileShare.Read);
Inheritable | Makes the file handle inheritable by child processes. This is not directly supported by Win32. |
None | Declines sharing of the current file. Any request to open the file (by this process or another process) will fail until the file is closed. |
Read | Allows subsequent opening of the file for reading. If this flag is not specified, any request to open the file for reading (by this process or another process) will fail until the file is closed. However, if this flag is specified additional permissions might still be needed to access the file. |
ReadWrite | Allows subsequent opening of the file for reading or writing. If this flag is not specified, any request to open the file for writing or reading (by this process or another process) will fail until the file is closed. However, if this flag is specified additional permissions might still be needed to access the file. |
Write | Allows subsequent opening of the file for writing. If this flag is not specified, any request to open the file for writing (by this process or another process) will fail until the file is closed. However, if this flag is specified additional permissions might still be needed to access the file. |
Hierarchy: