如何重新打开文件描述符0、1和2



在python REPL I中分别表示为os.close,其中012分别表示标准输入、输出和误差。我如何重新打开/初始化它们?这样我就可以在函数或代码块开始时关闭它们,并在返回之前重新打开。

PS: python特定的和通用的细节将非常感激。

您不能关闭它们然后重新打开它们,但是您可以复制它们并在完成后恢复之前的值。像这样;

copy_of_stdin  = os.dup(0)  // Duplicate stdin  to a new descriptor
copy_of_stdout = os.dup(1)  // Duplicate stdout to a new descriptor
copy_of_stderr = os.dup(2)  // Duplicate stderr to a new descriptor
os.closerange(0,2)          // Close stdin/out/err
...redirect stdin/out/err at will...
os.dup2(copy_of_stdin,  0)  // Restore stdin
os.dup2(copy_of_stdout, 1)  // Restore stdout
os.dup2(copy_of_stderr, 2)  // Restore stderr
os.close(copy_of_stdin)     // Close the copies
os.close(copy_of_stdout)
os.close(copy_of_stderr)

相关内容

  • 没有找到相关文章

最新更新