0

実行しようとしています

    which file.exe

C ++内で、結果を文字列にリダイレクトして、さらにプロセスを作成したい

I've tried system and CreateProcess but this executes command and redirects the results to stdout or a file.

but how do I get this result within a local string ?

Thanks

4

2 に答える 2

2

( を使用して) パイプにリダイレクトし、パイプの終わりをローカル文字列にCreateProcess読み取ります。

于 2013-01-30T13:44:19.153 に答える
1

_popen (Unix では popen)を使用することをお勧めします。

于 2013-01-30T13:45:58.140 に答える