enum OpenFlags

Declared at: llvm/include/llvm/Support/FileSystem.h:761

Enumerators

NameValueComment
OF_None0
F_None0
OF_Text1The file should be opened in text mode on platforms that make this distinction.
F_Text1The file should be opened in text mode on platforms that make this distinction.
OF_Append2The file should be opened in append mode.
F_Append2The file should be opened in append mode.
OF_Delete4Delete the file on close. Only makes a difference on windows.
OF_ChildInherit8When a child process is launched, this file should remain open in the child process.
OF_UpdateAtime16Force files Atime to be updated on access. Only makes a difference on windows.