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() into a FILE * structure that is suitable for use with fprintf()?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 15 down vote accepted

Use fdopen():

FILE* fp = fdopen(fd, "w");
link|improve this answer
And to get the file descriptor from a FILE* use fileno() : linux.die.net/man/3/fileno – ltn100 Oct 17 '11 at 14:28
feedback

FILE* f = fdopen(d, "w");

man fdopen output:

SYNOPSIS

#include <stdio.h>

FILE *
fdopen(int fildes, const char *mode);

The fdopen() function associates a stream with the existing file descriptor, fildes. The mode of the stream must be compatible with the mode of the file descriptor. When the stream is closed via fclose(3), fildes is closed also.

link|improve this answer
feedback

There is no standard way of doing this (or the reverse) as the C Standard has nothing to say about file descriptors. Your specific platform may or may not provide such a mechanism.

link|improve this answer
8  
Depends on what you mean by "standard". POSIX is a standard. – Richard Pennington Dec 21 '09 at 17:33
6  
The question was about file descriptors. ;-) – Richard Pennington Dec 21 '09 at 17:35
6  
@Neil > the question being tagged as C doesn't mean "tell me the holly truth about the C standard" but rather "I'm coding in C, I fail at doing this, please tell me whether it is possible and how?" – Gregory Pakosz Dec 21 '09 at 17:42
4  
I agree that there's no standard way of doing this, but the OP's mention of mkstemp implies that non-standard solutions are acceptable in this particular instance. In that case, however, he should have added the posix tag (which I see has since been added). – Emerick Rogul Dec 21 '09 at 17:59
5  
@Neil, and the purpose of the Net and the meaning of life. You would make more sense if you've said that you are of different opinion. I also doubt SO is all about hairsplitting over standards. And it's not very practical to rely on tagging skills of someone with an SO-experience corresponding to the reputation of 23. – Michael Krelin - hacker Dec 21 '09 at 18:08
show 12 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.