FileSystem.hxx: add FOpen modes for appending files
This commit is contained in:
parent
a9ce0218c1
commit
f6b50d2387
@ -50,6 +50,16 @@ constexpr Path::const_pointer WriteText = "w";
|
||||
* Open mode for writing binary files.
|
||||
*/
|
||||
constexpr Path::const_pointer WriteBinary = "wb";
|
||||
|
||||
/**
|
||||
* Open mode for appending text files.
|
||||
*/
|
||||
constexpr Path::const_pointer AppendText = "a";
|
||||
|
||||
/**
|
||||
* Open mode for appending binary files.
|
||||
*/
|
||||
constexpr Path::const_pointer AppendBinary = "ab";
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user