3

我目前正在尝试将CreateProcess与路径、参数和环境变量一起使用。我的变量存储在字符串中。

在下面的示例中,filePath 和 cmdArgs 工作正常,但我无法让 envVars 工作。

std::string filePath = "C:\\test\\DummyApp.exe";
std::string cmdArgs  = "Arg1 Arg2 Arg3";
std::string envVars  = "first=test\0second=jam\0";  // One

//LPTSTR testStr = "first=test\0second=jam\0";      // Two

CreateProcess(
   LPTSTR(filePath.c_str()),           //path and application name
   LPTSTR(cmdArgs.c_str()),            // Command line
   NULL,                               // Process handle not inheritable
   NULL,                               // Thread handle not inheritable
   TRUE,                               // Set handle inheritance
   0,                                  // Creation flags
   LPTSTR(envVars.c_str()),            // environment block
   //testStr                      //this line works
   NULL,                               // Use parent's starting directory 
   &si,                                // Pointer to STARTUPINFO structure
   &pi )                               // Pointer to PROCESS_INFORMATION structure

)

当我运行此代码时,返回的错误是“错误 87:参数不正确”。

我不明白的是,如果我注释掉标记为“一”的行并将其替换为标记为“二”的行(并在函数调用中进行匹配交换),那么它可以正常工作。

4

1 回答 1

7

您使用的构造函数std::string将复制"first=test\0second=jam\0"到第一个\0(C 样式字符串)。

要传递所有字符串,请使用另一个构造函数

std::string envVars("first=test\0second=jam\0", 22);
                     ^^^^^^^^^^^^^^^^^^^^^^^^   ^
                                                |
                           22 characters -------+
于 2013-04-19T16:46:41.567 回答