質問

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.

役に立ちましたか?

解決

You can use freopen()

// code copied from the link
#include <stdio.h>
...
FILE *fp;
...
fp = freopen ("/tmp/logfile", "a+", stdout);
...
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top