Click or drag to resize
FileAccess Enumeration
File access options.

Namespace: CMS.IO
Assembly: CMS.IO (in CMS.IO.dll) Version: 11.0.0
Syntax
C#
public enum FileAccess
Members
  Member nameValueDescription
Read1 Read access to the file. Data can be read from the file. Combine with Write for read/write access.
Write2 Write access to the file. Data can be written to the file. Combine with Read for read/write access.
ReadWrite3 Read and write access to the file. Data can be written to and read from the file.
See Also