现在每个模块都在写入stderr,因此我无法关闭单个模块的输出。有谁知道如何将流与 stdout 相关联,因此每个模块都会写入独立的流,以便我可以将其关闭。 例如:
fprintf(newStdout, "hello");
newStdout
正在对着屏幕写作。我不知道如何将newStdout
与屏幕相关联。
来自 http://www.cplusplus.com/reference/clibrary/cstdio/freopen/- 它是一个C++引用,但应该对 C 有效。
include <stdio.h>
int main ()
{
freopen ("myfile.txt","w",stdout);
printf ("This sentence is redirected to a file.");
fclose (stdout);
return 0;
}
不过,我认为您不能在每个模块的基础上执行此操作,因为stdout
和stderr
是全局变量。
如果你的目标是让newStdout
表现得像stdout
,有时保持沉默,你可以做这样的事情:
// Global Variables
FILE * newStdout;
FILE * devNull;
int main()
{
//Set up our global devNull variable
devNull = fopen("/dev/null", "w");
// This output will go to the console like usual
newStdout = stdout;
call_something_that_uses_newStdout();
//This will have no output
newStdout = devNull;
call_something_that_uses_newStdout();
//This will log to a file
newStdout = fopen("log.txt","w");
call_something_that_uses_newStdout();
fclose( newStdout ); // -- If we don't close it here we'll never be able to close it;)
//Clean up our global devNull
fclose( devNull );
}