Name

FileShare

Synopsis

This enumeration defines how two different processes can access the same file. If one process is using ReadWrite or Write, no other process can use the file. Similarly, if another process is using Read, then other processes can read from the file, but not write to it.

public enum FileShare {
            None = 0x00000000,
            Read = 0x00000001,
            Write = 0x00000002,
            ReadWrite = 0x00000003,
            Inheritable = 0x00000010
}

Hierarchy

System.ObjectSystem.ValueTypeSystem.Enum(System.IComparable, System.IFormattable, System.IConvertible)FileShare

Passed To

File.Open(), FileInfo.Open(), FileStream.FileStream(), System.IO.IsolatedStorage.IsolatedStorageFileStream.IsolatedStorageFileStream()

Get C# in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.