I'm trying to redirect stdout to a file and then restore it back to original in C, but I'm facing the following strange issue - the following piece of code succesfully writes
in stdout
in stdout
in stdout and in file in the respective file which is all OK.

#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#define STDOUT 1
int main(int argc, char* argv[]){
    printf("in stdout \n");
    int old_out = dup(STDOUT);
    close(STDOUT);
    int fd = open("./redirected",O_CREAT|O_RDWR|O_TRUNC,0777);
    printf("in file \n");
    close(fd);
    dup(old_out);
    printf("in stdout\n");
    return EXIT_SUCCESS;
}

However, removing the first row of my main function:

#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#define STDOUT 1
int main(int argc, char* argv[]){
    int old_out = dup(STDOUT);
    close(STDOUT);
    int fd = open("./redirected",O_CREAT|O_RDWR|O_TRUNC,0777);
    printf("in file \n");
    close(fd);
    dup(old_out);
    printf("in stdout\n");
    return EXIT_SUCCESS;
}

leads to in file
in stdout
being written on stdout and nothing being written in the file. I wonder how this happened? Thanks for any help.

link|improve this question

74% accept rate
2  
Consider using dup2() instead – rejj Jan 8 at 17:01
1  
Did you know that <unistd.h> defines a macro STDOUT_FILENO? – larsmans Jan 8 at 17:06
@larsmans, I knew there's such macro, but i thought it's in stdlib.h and when I got a compile error i defined it myself to save some hassle. – asenovm Jan 8 at 17:09
@larsmans, 10x for reminding though. I already changed it now :) – asenovm Jan 8 at 17:31
feedback

1 Answer

up vote 3 down vote accepted

It's a buffering issue. The buffer you write "in file" to isn't flushed before stdout is reinstalled, so the output goes to stdout and not to the file. Adding fflush(stdout); fixed it here.

link|improve this answer
works for me as well, 10x :) – asenovm Jan 8 at 17:29
feedback

Your Answer

 
or
required, but never shown

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