Allows read, write, or read/write access to a file.
[Visual Basic] Public Enum FileAccess [C#] public enum FileAccess [C++] public enum FileAccess
[JScript] In JScript, you can use the enumerations in the NGWS frameworks, but you cannot define your own.
Member Name | Description |
---|---|
Read | Specifies read access to the file. Data can be read from the file and the file pointer can be moved. Combine with Write for read-write access. |
ReadWrite | Specifies read and write access to the file. Data can be written to the file and the file pointer can be moved. Data can also be read from the file. |
Write | Specifies write access to the file. Data can be written to the file and the file pointer can be moved. Combine with Read for read-write access. |
Namespace: System.IO
Assembly: mscorlib.dll