実行しようとしています
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
( を使用して) パイプにリダイレクトし、パイプの終わりをローカル文字列にCreateProcess
読み取ります。
_popen (Unix では popen)を使用することをお勧めします。