Open Search
    FILEOPEN

    Detailed Description

    Enumerations

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

    Functions

    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.

    Warning
    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  )