您好,我一直在使用来自 http://www.codeproject.com/Articles/7530/Zip-Utils-clean-elegant-simple-C-Win32的“Zip Utils”
压缩文件和文件夹。简单的事情是如果知道文件名我只需要做这样的事情
HZIP hz; DWORD writ;
hz = CreateZip(_T("filename\\image1.zip"),0);
问题是我在尝试通过在循环中增加文件名来压缩文件时出错
int i= 0;
for(i=0; i<record; i++)
{
ZipAdd(hz,_T("doc"+i+1+".kml"), _T("filename\\doc"+i+1+".kml"));
}