当前位置:   article > 正文

QT提取压缩文件_qt 解析zip方式

qt 解析zip方式

QT 提取压缩文件

#include <QCoreApplication>
#include <QDir>
#include <QProcess>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    QString zipFilePath = "C:/tast/123.zip";
    QString destinationDir = "C:/tast/";

    QProcess unzipProcess;
    unzipProcess.start("powershell", QStringList() << "-Command" << "Expand-Archive" << "-Path" << zipFilePath << "-DestinationPath" << destinationDir);
    unzipProcess.waitForFinished();

    return a.exec();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/547625
推荐阅读
相关标签
  

闽ICP备14008679号