How can I get the outputs data after I called QProcess::execute() ?
-
Hello ,
I launch a command line program using QProcess, and I'd like to get all the console output from it.
The problem is:
if I launch it using QProcess::execute() all console outputs are sent to Qt Creator console output and I cannot get them (or can I ?)I have used readAllStandardError () and readAllStandardOutput (), but I still get no data.
What can I do ?
-
"Google's answer: ":http://stackoverflow.com/questions/3852587/how-to-get-stdout-from-a-qprocess
I hope it will help You :)