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 Server2008R2。

実行可能パスとライブラリパスに別々の変数があるほとんどのUnixシステムとは対照的に、Windowsはプログラムダイナミックライブラリを検索することに注意してください。PATH

于 2012-06-18T17:22:11.877 に答える