我如何登记 C++ std::cout 是否重定向到文件?

发布于 2024-12-06 13:47:29 字数 150 浏览 0 评论 0原文

我需要我的程序有不同的行为,具体取决于输出是输出到终端还是文件。我如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三生路 2024-12-13 13:47:29

这将在 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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文