-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzipcontrol.cpp
More file actions
42 lines (34 loc) · 872 Bytes
/
zipcontrol.cpp
File metadata and controls
42 lines (34 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "zipcontrol.h"
#include "zip/zip.h"
ZipControl::ZipControl(QObject *parent) : QObject(parent)
{
}
bool ZipControl::hasFile(QString path, QString target) const
{
auto val = path.toUtf8().toStdString();
try {
miniz_cpp::zip_file file(val);
if(file.has_file(target.toStdString())){
return true;
}else{
return false;
}
} catch (std::exception e) {
return false;
}
}
QString ZipControl::getFileString(QString path, QString target) const
{
auto val = path.toUtf8().toStdString();
auto member = target.toStdString();
try {
miniz_cpp::zip_file file(val);
if(file.has_file(member)){
return QString::fromUtf8(file.read(member).c_str());
}else{
return "";
}
} catch (std::exception e) {
return "";
}
}