Tagged Questions
The mkstemp tag has no wiki summary.
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 ...
8
votes
5answers
3k views
Python - How do I convert “an OS-level handle to an open file” to a file object?
tempfile.mkstemp() returns "a tuple containing an OS-level handle to an open file (as would be returned by os.open()) and the absolute pathname of that file, in that order." How do I convert that ...
6
votes
3answers
945 views
How to get a FILE pointer from a file descriptor?
I'm playing around with mkstemp(), which provides a file descriptor, but I want to generate formatted output via fprintf(). Is there an easy way to transform the file descriptor provided by mkstemp() ...
2
votes
3answers
154 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
458 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>
...
1
vote
1answer
561 views
Can't delete a file created by mkstemp() on Mac OS X
Apparently, NSFileManager is unable to delete files created by mkstemp(). Here's some test code to demonstrate this:
char pathCString[] = "/tmp/temp.XXXXXX";
int fileDescriptor = ...