#include<fcntl.h>#include<sys/stat.h>#include<stdio.h>#include<dirent.h>#include<string.h>#include<stdlib.h>#include<vector>#include<string>#include<iostream>#include<fstream>#include"minizip/zip.h"#include"minizip/unzip.h"usingnamespacestd;voidEnumDirFiles(conststring&dirPrefix,conststring&dirName,vector<string>&vFiles){if(dirPrefix.empty()||dirName.empty())return;stringdirNameTmp=dirName;stringdirPre=dirPrefix;if(dirNameTmp.find_last_of("/")!=dirNameTmp.length()-1)dirNameTmp+="/";if(dirNameTmp[0]=='/')dirNameTmp=dirNameTmp.substr(1);if(dirPre.find_last_of("/")!=dirPre.length()-1)dirPre+="/";stringpath;path=dirPre+dirNameTmp;structstatfileStat;DIR*pDir=opendir(path.c_str());if(!pDir)return;structdirent*pDirEnt=NULL;while((pDirEnt=readdir(pDir))!=NULL){if(strcmp(pDirEnt->d_name,".")==0||strcmp(pDirEnt->d_name,"..")==0)continue;stringtmpDir=dirPre+dirNameTmp+pDirEnt->d_name;if(stat(tmpDir.c_str(),&fileStat)!=0)continue;stringinnerDir=dirNameTmp+pDirEnt->d_name;if(fileStat.st_mode&S_IFDIR==S_IFDIR){EnumDirFiles(dirPrefix,innerDir,vFiles);continue;}vFiles.push_back(innerDir);}if(pDir)closedir(pDir);}intwriteInZipFile(zipFilezFile,conststring&file){fstreamf(file.c_str(),std::ios::binary|std::ios::in);f.seekg(0,std::ios::end);longsize=f.tellg();f.seekg(0,std::ios::beg);if(size<=0){returnzipWriteInFileInZip(zFile,NULL,0);}char*buf=newchar[size];f.read(buf,size);intret=zipWriteInFileInZip(zFile,buf,size);delete[]buf;returnret;}intmain(intargc,char*argv[]){if(argc<3){cout<<"usage:minifromto"<<endl;return-1;}stringdest=string(argv[1]);stringsrc=string(argv[2]);if(src.find_last_of("/")==src.length()-1)src=src.substr(0,src.length()-1);structstatfileInfo;stat(src.c_str(),&fileInfo);if(S_ISREG(fileInfo.st_mode)){zipFilezFile=zipOpen(dest.c_str(),APPEND_STATUS_CREATE);if(zFile==NULL){cout<<"openfilefailed"<<endl;return-1;}zip_fileinfozFileInfo={0};intret=zipOpenNewFileInZip(zFile,src.c_str(),&zFileInfo,NULL,0,NULL,0,NULL,0,Z_DEFAULT_COMPRESSION);if(ret!=ZIP_OK){cout<<"openfileinzipfailed"<<endl;zipClose(zFile,NULL);return-1;}ret=writeInZipFile(zFile,src);if(ret!=ZIP_OK){cout<<"writeinzipfailed"<<endl;zipClose(zFile,NULL);return-1;}zipClose(zFile,NULL);cout<<"zipok"<<endl;}elseif(S_ISDIR(fileInfo.st_mode)){size_tpos=src.find_last_of("/");stringdirName=src.substr(pos+1);stringdirPrefix=src.substr(0,pos);zipFilezFile=zipOpen(dest.c_str(),APPEND_STATUS_CREATE);if(zFile==NULL){cout<<"openfilefailed"<<endl;return-1;}vector<string>vFiles;EnumDirFiles(dirPrefix,dirName,vFiles);vector<string>::iteratoritF=vFiles.begin();for(;itF!=vFiles.end();++itF){zip_fileinfozFileInfo={0};intret=zipOpenNewFileInZip(zFile,itF->c_str(),&zFileInfo,NULL,0,NULL,0,NULL,0,Z_DEFAULT_COMPRESSION);if(ret!=ZIP_OK){cout<<"openfileinzipfailed"<<endl;zipClose(zFile,NULL);return-1;}ret=writeInZipFile(zFile,*itF);if(ret!=ZIP_OK){cout<<"writeinzipfailed"<<endl;zipClose(zFile,NULL);return-1;}}zipClose(zFile,NULL);cout<<"zipok"<<endl;}return0;}

target=minilib=-lminizip-laes-lzlibpath=-L/usr/local/libincpath=-I/usr/local/include${target}:g++main.cpp-g-o$@${lib}${libpath}${incpath}clean:-rm${target}