Commit f6b50d23 authored by Denis Krjuchkov's avatar Denis Krjuchkov

FileSystem.hxx: add FOpen modes for appending files

parent a9ce0218
......@@ -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";
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment