如何将_spawnvpe()与自定义PATH值一起使用?

时间:2012-06-18 14:52:38

标签: c windows spawn

我在(http://stackoverflow.com/questions/10969488/why-does-windows-spawn-process-sometimes-trigger-error-status-sxs-assembly-not-f)中提出了相关问题但是我担心问题的复杂性让人感到困惑,所以,这是一个非常简单的版本:

以下是调用_spawnvpe的示例,手动传递PATH值。

它不起作用。它出错并且不会运行记事本。

更改为_spawnv或不传递PATH值使其工作。但是,_putenv的文档清楚地说明了env值的格式是KEY = VALUE。

如何让它发挥作用?

请具体说明,并提供以下代码的差异或完整副本,包括修复程序。

#include <stdio.h>
#include <windows.h>
#include <process.h>
#include <errno.h>

int main(int argc, char *argv[]) {

  char *path_value;
  char buffer[4000];
  const char *env[2];
  const char *args[1];
  char *command;
  int result;
  intptr_t procHandle;

  path_value = getenv("PATH");
  sprintf(buffer, "PATH=%s", path_value);
  env[0] = buffer;
  env[1] = NULL;

  args[0] = NULL;

  int offset = 0;
  while (env[offset] != NULL) {
    printf("env %d: %s\n", offset, env[offset]);
    ++offset;
  }

  offset = 0;
  while (args[offset] != NULL) {
    printf("arg %d: %s\n", offset, args[offset]);
    ++offset;
  }

  command = "C:\\windows\\system32\\notepad.exe";

  procHandle = _spawnvpe(_P_NOWAIT, command, args, NULL);
  if (procHandle == -1) {
    printf("Failed to invoke command: %s\n", strerror(errno));
    exit(1);
  }

  _cwait(&result, procHandle, 0);
  if (result != 0)
    printf("Command exited with error code %d\n", result);
}

1 个答案:

答案 0 :(得分:2)

它适用于我,使用以下代码(仅显示更改的行):

...
const char *args[2];
...
args[0] = "notepad.exe";
args[1] = NULL;
...
procHandle = _spawnvpe(_P_NOWAIT, command, args, env);
...

Visual Studio 2010,Windows HPC Server 2008 R2。

请注意,Windows在PATH中搜索程序 AND 动态库,而大多数Unix系统都有可执行文件路径和库路径的单独变量。