| 69 | } |
| 70 | |
| 71 | QString P7ZipDecoder::readP7ZipOutput(const QStringList& args) const { |
| 72 | QProcess p7zip; |
| 73 | p7zip.start(p7zipPath, args); |
| 74 | |
| 75 | p7zip.waitForFinished(operationTimeoutMsecs); |
| 76 | |
| 77 | QString stdoutBuff = QByteArray(p7zip.readAll()); |
| 78 | |
| 79 | p7zip.close(); |
| 80 | |
| 81 | return stdoutBuff; |
| 82 | } |