Defines constants for read, write, or read/write access to a file. This enumeration has a flags attribute that allows a bitwise combination of its member values.
- Library
- xtd.core
Enumerator |
---|
read | Read access to the file. Data can be read from the file. Combine with Write for read/write access.
|
write | Write access to the file. Data can be written to the file. Combine with Read for read/write access.
|
read_write | The file is a read_write file. The file is part of the operating read_write or is used exclusively by the operating read_write.
|