Flags for File Operations.
| Member Name | Description |
|---|---|
| O_RDONLY | Open for read only. |
| O_WRONLY | Open for writing only. |
| O_RDWR | Open for both read and write. |
| O_APPEND | Writes done at end of file. |
| O_CREAT | Create and open a file. |
| O_TRUNC | Open and truncate. |
| O_EXCL | Open only if file doesn't already exist. |
| O_TEXT | Open in text (translated) mode. |
| O_BINARY | Open in binary (untranslated) mode. |
Namespace: CTI32NetLib
Assembly: CTI32NetLib (in CTI32NetLib.dll)