Enum FileAccess
Defines constants for controlling how to access the contents of a file
[Flags]
public enum FileAccess
Fields
Read = 1Allows for reading the contents of a file
ReadWrite = Read | WriteAllows for reading and writing the contents of a file
Write = 2Allows for writing the contents of a file