0

我正在尝试从控制台从 WinMain 函数 ia VCL 表单应用程序传输标准输出。

特别是,我需要在控制台中执行此操作:

mywinprogram.exe -v > toMyFile.txt 

其中 -v 代表版本。传递的信息只是应用程序的版本。

我可以使用此处的答案 将输出输出到控制台:如何使用 Windows 程序在 C++ 中获取控制台输出?

但是将输出通过管道传输到文件不起作用。

当没有任何参数启动时,应用程序的行为应该像一个“正常”的 Windows 应用程序。

以这种方式获取信息的能力是为了自动构建系统的工作。

4

1 回答 1

0

这是我在Sev的答案中找到的一个版本。

调用这个函数你做的第一件事。_tWinMain()

#include <cstdio>
#include <fcntl.h>
#include <io.h>

void RedirectIOToConsole() {
    if (AttachConsole(ATTACH_PARENT_PROCESS)==false) return;

    HANDLE ConsoleOutput = GetStdHandle(STD_OUTPUT_HANDLE);
    int SystemOutput = _open_osfhandle(intptr_t(ConsoleOutput), _O_TEXT);

    // check if output is a console and not redirected to a file
    if(isatty(SystemOutput)==false) return; // return if it's not a TTY

    FILE *COutputHandle = _fdopen(SystemOutput, "w");

    // Get STDERR handle
    HANDLE ConsoleError = GetStdHandle(STD_ERROR_HANDLE);
    int SystemError = _open_osfhandle(intptr_t(ConsoleError), _O_TEXT);
    FILE *CErrorHandle = _fdopen(SystemError, "w");

    // Get STDIN handle
    HANDLE ConsoleInput = GetStdHandle(STD_INPUT_HANDLE);
    int SystemInput = _open_osfhandle(intptr_t(ConsoleInput), _O_TEXT);
    FILE *CInputHandle = _fdopen(SystemInput, "r");

    //make cout, wcout, cin, wcin, wcerr, cerr, wclog and clog point to console as well
    ios::sync_with_stdio(true);

    // Redirect the CRT standard input, output, and error handles to the console
    freopen_s(&CInputHandle, "CONIN$", "r", stdin);
    freopen_s(&COutputHandle, "CONOUT$", "w", stdout);
    freopen_s(&CErrorHandle, "CONOUT$", "w", stderr);

    //Clear the error state for each of the C++ standard stream objects.
    std::wcout.clear();
    std::cout.clear();
    std::wcerr.clear();
    std::cerr.clear();
    std::wcin.clear();
    std::cin.clear();
}
于 2020-02-20T22:00:19.267 回答