請問一下我想執行一個路徑為C:\\Qt\\4.2.1\\examples\\followgraph\\debug\\Uedit32.exe 的執行檔
而我code為
QProcess process;
QStringList env = QProcess::systemEnvironment();
env << "PATH=C:\\Qt\\4.2.1\\bin";
env.replaceInStrings(QRegExp("^PATH=(.*)", Qt::CaseInsensitive), "PATH=C:\\Qt\\4.2.\\examples\\follo
graph\\debug");
process.setEnvironment(env);
process.start("Uedit32");
還是不能執行,請問一下各位高手,我的code哪裡錯了?