对于一个项目,必须阅读一些 zip 文件。一切正常,但是当想要从 zip 文件中的文件夹中读取时,它不起作用。或者我只是不知道 zip 在 C++ 中是如何工作的。我搜索了整个互联网,找不到答案。
问问题
2350 次
1 回答
6
据我回忆,过去使用 minizip 时,文件夹层次结构中的所有文件都会同时返回。您只需与每个文件的路径名进行比较,即可找出哪些与您要读取的文件夹匹配。
zipFile zip = unzOpen(zipfilename);
if (zip) {
if (unzGoToFirstFile(zip) == UNZ_OK) {
do {
if (unzOpenCurrentFile(zip) == UNZ_OK) {
unz_file_info fileInfo;
memset(&fileInfo, 0, sizeof(unz_file_info));
if (unzGetCurrentFileInfo(zip, &fileInfo, NULL, 0, NULL, 0, NULL, 0) == UNZ_OK) {
char *filename = (char *)malloc(fileInfo.size_filename + 1);
unzGetCurrentFileInfo(zip, &fileInfo, filename, fileInfo.size_filename + 1, NULL, 0, NULL, 0);
filename[fileInfo.size_filename] = '\0';
// At this point filename contains the full path of the file.
// If you only want files from a particular folder then you should compare
// against this filename and discards the files you don't want.
if (matchFolder(filename)) {
unsigned char buffer[4096];
int readBytes = unzReadCurrentFile(zip, buffer, 4096);
// Do the rest of your file reading and saving here.
}
free(filename);
}
unzCloseCurrentFile(zip);
}
} while (unzGoToNextFile(zip) == UNZ_OK);
}
unzClose(zip);
}
我目前没有能力测试这段代码,所以可能会有一些错误,但希望你能看到它应该如何工作的大致思路。
于 2013-05-05T17:17:19.977 回答