Tagged Questions
14
votes
3answers
6k views
How to create a std::ofstream to a temp file?
Okay, mkstemp is the preferred way to create a temp file in POSIX.
But it opens the file and returns an int, which is a file descriptor. From that I can only create a FILE*, but not an ...