FILEOPEN Enumeration

详细描述

Enumerations

enum   FILEOPEN {
   APPEND ,
   READ ,
   WRITE ,
   READWRITE ,
   READ_NOCACHE ,
   SHAREDREAD ,
   SHAREDWRITE
}

函数

enum FILEOPEN   MAXON_ENUM_LIST ( FILEOPEN )

Enumeration Type Documentation

◆  FILEOPEN

enum FILEOPEN
strong
Enumerator
APPEND 

Open an existing file for writing and set the position to the end of that file.

READ 

Open the file for reading.

WRITE 

Create a new file for writing.

警告
If the file name points to an existing file, it will be overwritten.
READWRITE 

Open the file for both reading and writing.

READ_NOCACHE 

Private .

SHAREDREAD 

Private .

SHAREDWRITE 

Private .

Function Documentation

◆  MAXON_ENUM_LIST()

enum FILEOPEN MAXON_ENUM_LIST ( FILEOPEN   )