| 58 | } |
| 59 | |
| 60 | bool P7ZipDecoder::runP7Zip(const QStringList& args) const { |
| 61 | QProcess p7zip; |
| 62 | p7zip.start(p7zipPath, args); |
| 63 | |
| 64 | bool result = p7zip.waitForFinished(operationTimeoutMsecs); |
| 65 | |
| 66 | p7zip.close(); |
| 67 | |
| 68 | return result; |
| 69 | } |
| 70 | |
| 71 | QString P7ZipDecoder::readP7ZipOutput(const QStringList& args) const { |
| 72 | QProcess p7zip; |