FileAccess Enumeration |
Namespace: CMS.IO
public enum FileAccess
Member name | Value | Description | |
---|---|---|---|
Read | 1 | Read access to the file. Data can be read from the file. Combine with Write for read/write access. | |
Write | 2 | Write access to the file. Data can be written to the file. Combine with Read for read/write access. | |
ReadWrite | 3 | Read and write access to the file. Data can be written to and read from the file. |