现在每个模块都在写入 stderr,因此我无法关闭单个模块的输出。有谁知道我如何将流与 stdout 相关联,因此每个模块都将写入独立的流,以便我可以将其关闭。例如:

fprintf(newStdout, "hello");
newStdout 正在写入屏幕。我不知道如何将 newStdout 与屏幕相关联。

最佳答案

如果您的目标是让 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 );
}

关于c - 如何将流 (FILE *) 与 stdout 相关联?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11168244/

10-15 16:51