如何将std :: string环境块传递给CreateProcess?

时间:2013-04-19 16:41:30

标签: c++ windows createprocess

我目前正在尝试将CreateProcess 与Path,Arguments和Environment Variables一起使用。我的变量存储在字符串中。

在下面的示例中,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:参数不正确”。

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

1 个答案:

答案 0 :(得分:5)

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

要传递所有字符串,请使用另一个constructor

std::string envVars("first=test\0second=jam\0", 22);
                     ^^^^^^^^^^^^^^^^^^^^^^^^   ^
                                                |
                           22 characters -------+