Tagged Questions

2
votes
4answers
845 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 …
8
votes
2answers
2k views

[c++] 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 …