首页 > 代码库 > Cocos2d-x3.0 解压zip
Cocos2d-x3.0 解压zip
2dx3.0为我们集成了unzip库,帮助我们实现对文件的解压,但使用起来略显复杂我这里封装了一个解压工具库。分享一下。
工具类下载:http://download.csdn.net/detail/qqmcy/7288151
先引入头文件
#include "DJZipArchive.h"
实现解压代码
//获取文件路径 const char* file_path = FileUtils::getInstance()->fullPathForFilename("hello.zip").c_str(); log("external file path = %s",file_path); DJZipArchive* djzip = new DJZipArchive(); //file_path zip文件的路径 djzip->unzipOpenFile(file_path); std::string writablePath = FileUtils::getInstance()->getWritablePath(); std::string fullPath = writablePath; log("%s",fullPath.c_str()); // fullPath 解压文件储存路径 djzip->unzipFileToAndOverWrite(fullPath, true);
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。