博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用zzip和minizip解压缩文件
阅读量:5173 次
发布时间:2019-06-13

本文共 1952 字,大约阅读时间需要 6 分钟。

 #include <zzip/zzip.h> #include <zlib.h> #include <zip.h> #include <unzip.h> #include <string> #include <map> #ifdef _DEBUG#pragma comment( lib, "zlib_d.lib") #pragma comment( lib, "zzip_d.lib") #pragma comment( lib, "minizip_d.lib") #else #pragma comment( lib, "zlib.lib" ) #pragma comment( lib, "zzip.lib" ) #pragma comment( lib, "minizip.lib" ) #endif#define SAFE_DELETEARRAY(p) if(p != NULL) { delete[] (p); (p) = NULL; }; void UnzipAndZip( const char* pScrFileName, const char* pDstFileName ) { struct FILE_DESC { unsigned char* pData; size_t DataSize; }; std::map<std::string, FILE_DESC> mapFileStreams; ZZIP_DIR* pZipDir = zzip_opendir( pScrFileName ); ZZIP_DIRENT* pZipDirent = NULL; while( pZipDirent = zzip_readdir( pZipDir ) ) { size_t length = strlen(pZipDirent->d_name); if( length > 0 ) { if( pZipDirent->d_name[length - 1] != '//' && pZipDirent->d_name[length - 1] != '/' ) { ZZIP_FILE* pZipFile = zzip_file_open( pZipDir, pZipDirent->d_name, ZZIP_CASELESS ); if( pZipFile != NULL ) { ZZIP_STAT sz; memset( &sz, 0, sizeof(sz) ); zzip_file_stat( pZipFile, &sz ); if( sz.st_size > 0 ) { unsigned char* pBuffer = new unsigned char[sz.st_size]; zzip_file_read( pZipFile, pBuffer, sz.st_size ); FILE_DESC data = { pBuffer, sz.st_size }; mapFileStreams[pZipDirent->d_name] = data; } zzip_file_close( pZipFile ); } } } } if( pZipDir ) zzip_closedir( pZipDir ); zip_fileinfo ZipFileInfo; zipFile ZipFile = zipOpen( pDstFileName, 0 ); std::map<std::string, FILE_DESC>::iterator iter = mapFileStreams.begin(); while( iter != mapFileStreams.end() ) { int err = zipOpenNewFileInZip( ZipFile, iter->first.c_str(), &ZipFileInfo, NULL, 0, NULL, 0, NULL, 0, 0 ); zipWriteInFileInZip( ZipFile, iter->second.pData, iter->second.DataSize ); SAFE_DELETEARRAY( iter->second.pData ); ++iter; } zipClose( ZipFile, NULL ); } int main(int argc, char* argv[]) { UnzipAndZip( "test.zip", "dst.zip" ); return 0; }; 

转载于:https://www.cnblogs.com/mfrbuaa/p/4219019.html

你可能感兴趣的文章
小细节:Java中split()中的特殊分隔符 小数点
查看>>
【编程思想】【设计模式】【行为模式Behavioral】中介者模式Mediator
查看>>
后端接口时间戳或者随机数的作用
查看>>
tomcat docBase 和 path
查看>>
java默认语法、EL、JSTL表达式,JSTL和struts Tag标签的使用总结
查看>>
Vue笔记:使用 axios 发送请求
查看>>
富文本编辑器 - RichEditor
查看>>
java webcontroller访问时报415错误
查看>>
qcow2、raw、vmdk等镜像格式
查看>>
Jzoj5455【NOIP2017提高A组冲刺11.6】拆网线
查看>>
特定字符序列的判断(1028)
查看>>
华为面试
查看>>
平衡二叉树(AVL Tree)
查看>>
【BZOJ3295】[Cqoi2011]动态逆序对 cdq分治
查看>>
【CF799E】Aquarium decoration 线段树
查看>>
大运飞天 鲲鹏展翅
查看>>
从ECMA到W3C
查看>>
软件工程--第十六周学习进度
查看>>
yii2 ActiveRecord多表关联以及多表关联搜索的实现
查看>>
搜狗输入法安装--ubuntu
查看>>