Enumerator |
---|
oC_FileSystem_ModeFlags_Read |
specifies read access to the file
|
oC_FileSystem_ModeFlags_Write |
specifies write access to the file
|
oC_FileSystem_ModeFlags_SeekToTheEnd |
moves offset pointer to the end of the file
|
oC_FileSystem_ModeFlags_OpenExisting |
open file (fails if file does not exist)
|
oC_FileSystem_ModeFlags_OpenAlways |
open file (create new if it does not exist)
|
oC_FileSystem_ModeFlags_CreateNew |
create new file (fails if file exists)
|
oC_FileSystem_ModeFlags_CreateNewAlways |
create new file (overwrite if exists)
|