Domanda

I want to write a function which would redirect the standard output to a file where the name of the file is "name".log where "name" is the argument to the function

void redirect(char *name) {

I don't know where to begin.

È stato utile?

Soluzione

You can use freopen()

// code copied from the link
#include <stdio.h>
...
FILE *fp;
...
fp = freopen ("/tmp/logfile", "a+", stdout);
...
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top