qt 使用7z解压文件
时间: 2023-12-31 20:23:40 浏览: 113
QT 使用7Z来解压缩文件夹
```cpp
class Dll7ZipInterface {
public:
virtual ~Dll7ZipInterface(){}
virtual QString extract(const QString& sZip, const QString& sDir) = 0; // 解压
};
class ZipAPI {
public:
ZipAPI(); //压缩一个文件夹
static bool ZipDir(QString strDir, QString strZipfile); //压缩一群文件
static bool ZipFiles(QStringList files, QString strZipfile); //解压
static bool UnZip(const QString& strZipfile, const QString &strOutDir);
}
```
阅读全文