使用 QProcess 在 Qt(C++) 中使用 WinRar 解压缩 - 提取目录问题

Posted

技术标签:

【中文标题】使用 QProcess 在 Qt(C++) 中使用 WinRar 解压缩 - 提取目录问题【英文标题】:Unzip with WinRar in Qt(C++) using QProcess - extract directory problem 【发布时间】:2020-06-30 14:34:38 【问题描述】:

我有下面的代码来解压缩文件夹。它有效,但我不知道如何更改提取目录。每次,它都会将文件夹提取到我的程序的 .exe 文件所在的目录。我尝试了一些东西,但每次,它只是在那里提取。我要选择目录。

QString program = "c:/program files/winRAR/winRAR.exe";

QStringList arguments;
arguments << "x"; // extract files and directories
arguments << "-y"; // suppress questions
arguments << "-o" + QDir::toNativeSeparators(extractDirectory);
arguments << QDir::toNativeSeparators(zipFileDirectory);

QProcess *myProcess = new QProcess(parent);
myProcess->start(program, arguments);

我会说,在 -o 参数后面编写 extractDirectory 的方式存在问题,但不确定。 感谢您的帮助。

【问题讨论】:

尝试 arguments &lt;&lt; "-o" &lt;&lt; QDir::toNativeSeparators(extractDirectory) 将其作为单独的参数传递,也许 winrar 的命令行解析不能容忍将参数粘贴到标志? 试过但没用。它现在甚至不提取该文件。 Does WinRar even support -o? 可以在cmd中运行想要的命令吗? 谢谢,我完全忘记了。多亏了你,我尝试了别的东西。谢谢。 【参考方案1】:

感谢一些 cmets,我发现 WinRAR 中不存在 -o 参数,这是解决方案。

QString program = "c:/program files/winRAR/winRAR.exe";

QStringList arguments;
arguments << "x"; // extract files and directories
arguments << "-y"; // suppress questions
arguments << QDir::toNativeSeparators(zipFileDirectory);
arguments << QDir::toNativeSeparators(extractDirectory);

QProcess *myProcess = new QProcess(parent);
myProcess->start(program, arguments);

谢谢大家。

【讨论】:

以上是关于使用 QProcess 在 Qt(C++) 中使用 WinRar 解压缩 - 提取目录问题的主要内容,如果未能解决你的问题,请参考以下文章

Qt QProcess

QT中QProcess调用命令行的痛苦经历

Qt - 如何将“更多”数据写入 QProcess?

使用 QProcess 读取标准输出

QProcess的正确用法

QProcess 终止进程树