Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum System.IO.FileAccess

Assembly: System.Runtime

Defines constants for read, write, or read/write access to a file.

Values

Read
Read access to the file. Data can be read from the file. Combine with <see langword="Write" /> for read/write access.
Write
Write access to the file. Data can be written to the file. Combine with <see langword="Read" /> for read/write access.
ReadWrite
Read and write access to the file. Data can be written to and read from the file.