I want to open a file for read and write with std::filebuf
, but create the file if it doesn't exist yet. If it already exists, do nothing. I want to freely write into the file, without any "always jump to end before each write" behavior. What open mode should be used?
According to the table , there appears to be no combination of flags to do that.
What's the best option to ensure this effect?