Unzip zip files
General and Desktop
3
Posts
2
Posters
1.7k
Views
2
Watching
-
I found example for unarchive
ZipReader cZip(QLatin1String("/Volumes/Macintosh 2/1.zip")); if (cZip.exists()) { qDebug() << "Number of items in the zip archive =" << cZip.count(); foreach (ZipReader::FileInfo info, cZip.fileInfoList()) { if(info.isFile) qDebug() << "File:" << info.filePath << info.size; else if (info.isDir) qDebug() << "Dir:" << info.filePath; else qDebug() << "SymLink:" << info.filePath; } cZip.extractAll("/Volumes/Macintosh 2/1/"); }I see list of files in console, but the files is not extracts :((((((
What is wrong?