1

我在(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);
}
4

1 回答 1

2

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

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

Visual Studio 2010、Windows HPC 服务器 2008 R2。

请注意,Windows 搜索程序动态库PATH与大多数 Unix 系统不同,后者对可执行文件和库路径具有单独的变量。

于 2012-06-18T17:22:11.877 回答