C++解压zip压缩包(2)

时间:2024-03-28 11:19:30

由于上一篇博客写的比较急,没有给出直接运行的代码跟演示,这里我重新写了一个项目

上一篇博客C++解压压缩文件

上一篇博客中有ziputils官网的链接更下载地址,使用方法还是一样,向项目中添加文件

#include <Windows.h>          //添加Windows.h不然会一堆错误
#include <string>             //C++使用string添加string,不要添加string.h
#include <iostream>
#include "ziputils/zip.h"
#include "ziputils/unzip.h"
using namespace std;

int main()
{

	string strZipPath = "C:\\Users\\Administrator\\Desktop\\libssh2\\ftp_sftp-master.zip";
	//将路径转为TCHAR类型
	int iUnicode = MultiByteToWideChar(CP_ACP, 0, strZipPath.c_str(), strZipPath.length(), NULL, 0);
	WCHAR* pwUnicode = new WCHAR[iUnicode + 2];
	if (pwUnicode)
	{
		ZeroMemory(pwUnicode, iUnicode + 2);
	}

	MultiByteToWideChar(CP_ACP, 0, strZipPath.c_str(), strZipPath.length(), pwUnicode, iUnicode);

	pwUnicode[iUnicode] = '\0';
	pwUnicode[iUnicode+1] = '\0';

	//解压文件
	//SetCurrentDirectoryA(strdec.c_str());//将进程的工作目录移动到该参数所指的目录下,该目录为winrar.exe的默认文件路径
	//解压文件会直接在项目的.vcproj目录下进行
	HZIP hz = OpenZip(pwUnicode,NULL);
	ZIPENTRY ze; 
	GetZipItem(hz,-1,&ze); 
	int numitems = ze.index;
	for (int zi = 0; zi < numitems; zi++)
	{
		ZIPENTRY ze; 
		GetZipItem(hz, zi, &ze);
		UnzipItem(hz, zi,ze.name);
		cout << "解压成功" << endl;
	}
	CloseZip(hz);

	return 0;
}

我这里打印的是每次解压文件的成功与否,ziputils内部按压缩包的文件解压

下面是原先文件目录内容

C++解压zip压缩包(2)

运行代码

C++解压zip压缩包(2)

下面是解压后的目录

C++解压zip压缩包(2)

可以看到解压成功

本文配合上一篇博客阅读更佳