Tagged Questions
3
votes
1answer
117 views
dupplicating std::ofstream appended content
I am using a std::ofstream for trace output.
For some reasons, I sometimes want to dupplicate what I have appended at the end of the std::ofstream (that is not flushed or closed yet), into another ...
2
votes
2answers
619 views
How do I write binary data for 7z archive format?
I've been pouring over the format description and source code for the 7z archive format, but I'm still having trouble writing a valid container. I assume I can create an empty container... anyway ...
1
vote
5answers
273 views
Faster Alternative to std::ofstream
I generate a set of data files. As the files are supposed to be readable, they text files (opposed to binary files).
To output information to my files, I used very comfortable std::ofstream object.
...
1
vote
4answers
1k views
std::ofstream, check if file exists before writing
I am writing a save file functionality with Qt application written in C++.
I am looking for a way to check to see if the selected file already exists before writing to it, so that I can prompt a ...