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 ...
2
votes
3answers
152 views
What is the C++ standard library equivalent for mkstemp?
I am transitioning a program that uses temporary files from POSIX FILE to C++ standard library iostreams. What's the correct alternative to mkstemp?
1
vote
1answer
449 views
mkstemp() implementation for win32
Can anybody point me to the code that implements mkstemp() (C/C++) on Win32, or very close analog.
Must be race-free.
It's supposed to look like
#include <windows.h>
#include <io.h>
...