Hi, On Mon, Jun 7, 2010 at 2:09 PM, Gabriele Kahlout <gabriele at mysimpatico.com> wrote: > QProcess::execute("ls"); > > works, but not: > > QProcess::execute("cd;ls"); "cd;ls" is not a file. Try: QProcess::execute("sh", QStringList() << "-c" << "\"cd;ls\""); -- Best Regards, Denis Mingulov