文件名称:winzip 文件压缩打包源码
文件大小:75KB
文件格式:RAR
更新时间:2014-09-15 06:16:31
winzip 打包 压缩
C++ 下大winzip非常不错
HZIP g_pZip;
g_pZip=OpenZip(_T("Package.zip"),0);
if (g_pZip)
{
ZIPENTRY ze;
GetZipItem(g_pZip,-1,&ze);
int j;
FindZipItem(g_pZip,L"ddd/AD_Lingguan_huanjing",true,&j,&ze);
HGLOBAL hGlobal = GlobalAlloc(GMEM_MOVEABLE, ze.unc_size);
void * pData = GlobalLock(hGlobal);
UnzipItem(g_pZip,j, pData, ze.unc_size);
GlobalUnlock(hGlobal);
GlobalFree(hGlobal);
//int numitems=ze.index;
//for (int i=0; i
【文件预览】:
unzip.cpp
zip.cpp
zip.h
unzip.h