WriteFile和WriteConsole

时间:2013-06-28 14:35:33

标签: c winapi

我希望能够使用WriteFileWriteConsole,因此以下3个功能可以使用:

> Output.exe
> Output.exe > File.txt & type File.txt
> for /F "tokens=*" %A in ('Output.exe') do @echo %A

我设法让前两个使用我当前的代码。但现在for循环输出:The system cannot write to the specified device.

我猜它不喜欢我的BOM。 如何使我的代码与for循环一起使用?

这是我目前的代码。

DWORD   dwBytesWritten;
DWORD   dwConMode;
BOOL    bRedirectedToFile;
WCHAR   str[] = L"Hello World";

bRedirectedToFile = !GetConsoleMode(hStdOut, &dwConMode);

if (bRedirectedToFile)
{
    LONG  zero = 0;
    DWORD pos  = SetFilePointer(hStdOut, 0, &zero, FILE_CURRENT);

    if (pos == 0)
    {
        WORD Unicode = ((BYTE*)L"A")[0] == 0 ? 0xfffe : 0xfeff;
        WriteFile(hStdOut, &Unicode, 2, &dwBytesWritten, 0);
    }

    WriteFile(hStdOut, str, lstrlen(str) * sizeof(WCHAR), &dwBytesWritten, 0);
}
else
{
    WriteConsole(hStdOut, str, lstrlen(str), &dwBytesWritten, 0);
}

1 个答案:

答案 0 :(得分:1)

我测试了wprintf的输出,它似乎在打印之前将字符串转换为ASCII。

目前可接受的解决方案:

  1. str转换为ASCII
  2. 使用WriteFile打印str
  3. 更简单的代码。