现在每个模块都在写入标准错误,因此我无法关闭单个模块的输出。有谁知道我如何将流与标准输出相关联,因此每个模块都将写入独立的流,以便我可以将其关闭。例如:
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 );
}