我如何登记 C++ std::cout 是否重定向到文件?
我需要我的程序有不同的行为,具体取决于输出是输出到终端还是文件。我如何从 C++ 中找到这一点?
我认为没有适用于所有操作系统的解决方案。就我的目的而言,最好有一种在 Windows 下工作的策略和一种在 linux/unix 下工作的策略。
提前致谢。
I need my program to behave differently, depending on whether the output is to a terminal or to a file. How can I find this out from within C++?
I assume there is no solution that works for all operating systems. For my purposes, it would be good to have one strategy which works under Windows and one which works under linux/unix.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将在 Linux 下有所帮助: 如何判断是在 Linux 控制台中运行还是在 ssh 会话中运行?
是的,这是一个 C 调用,但绝对可以从 C++ 调用。
GetStdHandle 给出Windows 下的类似起点:
This will help under linux: How to tell if running in a linux console versus an ssh session?
Yes it is a C call, but it can definitely be called from C++.
GetStdHandle gives a similar starting point under windows: