web-dev-qa-db-ja.com

C:システムコマンドを実行して出力を取得しますか?

可能性のある複製:
Cから外部プログラムを実行し、その出力を解析するにはどうすればよいですか?

Linuxでコマンドを実行して、出力内容のテキストを取得したいのですが、このテキストを画面に出力したくないしません。一時ファイルを作成するよりもエレガントな方法はありますか?

125
jimi hendrix

popen 」関数が必要です。コマンド「ls/etc」を実行し、コンソールに出力する例を次に示します。

#include <stdio.h>
#include <stdlib.h>


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

  FILE *fp;
  char path[1035];

  /* Open the command for reading. */
  fp = popen("/bin/ls /etc/", "r");
  if (fp == NULL) {
    printf("Failed to run command\n" );
    exit(1);
  }

  /* Read the output a line at a time - output it. */
  while (fgets(path, sizeof(path)-1, fp) != NULL) {
    printf("%s", path);
  }

  /* close */
  pclose(fp);

  return 0;
}
229
user14038

何らかのプロセス間通信が必要です。 pipe または共有バッファを使用します。

4
dirkgently