Hi, I am trying to learn how to use commands in QT with cmd I can do the following:
QProcess consola;
consola.start("cmd.exe /C " + comando);
consola.waitForFinished();
consola.waitForReadyRead();
How can I do to use cd .. for example or cd to a location in my folder in QT.