我有以下代码可以正常运行到DskPrt1.txt assign letter=的最后一行。该文件将按原样写入。在一个下拉列表中,我选择一个驱动器号,将选择的号发送到FILE fp,将其写出,然后指示diskpart对其进行读取。这是输出


  第1卷是选定的卷
  
  为此命令指定的参数无效。


这告诉我它正在做所有事情,直到DskPrt.txt中的第二行为止。我已经将assign letter=X手动复制并粘贴到diskpart中,并且运行良好。为什么它对我的代码不起作用?

第1部分

SendMessage(
(HWND) hWndDropMenu,    // handle to destination window
CB_GETLBTEXT,           // message to send
(WPARAM) wParam,        // not used; must be zero
(LPARAM)tmpMsg          // not used; must be zero
);


第2部分

FILE *fp;
fp = fopen("DskPrt1.txt", "wt");
char DskPrt11[] = "select volume 1";
char DskPrt12[] = "assign letter=";
fwrite (DskPrt11 , 1 , sizeof(DskPrt11) , fp );         //Line 1
fwrite("\n", sizeof(char), 1, fp);                      //New line
fwrite (DskPrt12 , 1 , sizeof(DskPrt12) , fp );         //Line 2
fwrite (tmpMsg , 1 , sizeof(tmpMsg) , fp );             //Letter
fclose(fp);

//Execute part 1 commands
std::wstring arrString[3] = {L"/C mkdir C:\\Users\\Andrew\\Desktop\\test",L"/C DISKPART /s C:\\Users\\Andrew\\Desktop\\DskPrt1.txt"};
LPWSTR cmd =L"C:\\Windows\\System32\\cmd.exe";
for(int i=0; i<2; i++)
{
    STARTUPINFO info={sizeof(info)};
    PROCESS_INFORMATION processInfo;
    CreateProcessW(cmd, &arrString[i][0], NULL, NULL, TRUE, CREATE_NO_WINDOW, NULL, NULL, &info, &processInfo);
    ::WaitForSingleObject(processInfo.hProcess, INFINITE);
    CloseHandle(processInfo.hProcess);
    CloseHandle(processInfo.hThread);
}

最佳答案

因为这:

fwrite (DskPrt11 , 1 , sizeof(DskPrt11) , fp );


通过使用sizeof(),您将包含终止null。因此,您的文件最终会包含至少两个不需要的空字节。请改用strlen()。

10-06 11:32