Question

I am transitioning a program that uses temporary files from POSIX FILE to C++ standard library iostreams. What's the correct alternative to mkstemp?

Was it helpful?

Solution

There is no portable C++ way to do it. You need to create a file (which is done automatically when opening a file for writing using an ofstream) and then remove it again when you're finished with the file (using the C library function remove). But you can use tmpnam to generate a name for the file:

#include <fstream>
#include <cstdio>

char filename[L_tmpnam];
std::tmpnam(filename);
std::fstream file(filename);
...
std::remove(filename);   //after closing, of course, either by destruction of file or by calling file.close()

OTHER TIPS

There is none. Note that mkstemp is not part of either C (C99, at least) or C++ standard — it's a POSIX addition. C++ has only tmpfile and tmpnam in the C library part.

Boost.IOStreams, however, provides a file_descriptor device class, which can be used to create a stream operating on what mkstemp returns.

If I recall correctly, it should look like this:

namespace io = boost::iostreams;

int fd = mkstemp("foo");
if (fd == -1) throw something;

io::file_descriptor device(fd);
io::stream<io::file_descriptor> stream(device);

stream << 42;

If you want a portable C++ solution, you should use unique_path in boost::filesystem :

The unique_path function generates a path name suitable for creating temporary files, including directories. The name is based on a model that uses the percent sign character to specify replacement by a random hexadecimal digit. [Note: The more bits of randomness in the generated path name, the less likelihood of prior existence or being guessed. Each replacement hexadecimal digit in the model adds four bits of randomness. The default model thus provides 64 bits of randomness. This is sufficient for most applications

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top