标签:
-(void)zip
{
NSArray *arrayM = @[@"/Users/gengqun/Desktop/Snip20160118_866.png",
@"/Users/gengqun/Desktop/Snip20160118_867.png",
@"/Users/gengqun/Desktop/Snip20160118_868.png"];
/*
第一个参数:压缩文件存放路径
第二个参数:所有要压缩的文件的路径
*/
[Main createZipFileAtPath:@"/Users/gengqun/Desktop/GQ.zip" withFilesAtPaths:arrayM];
}
-(void)zip2
{
/*
第一个参数:压缩文件存放路径
第二个参数:要压缩的文件目录
*/
[Main createZipFileAtPath:@"/Users/gengqun/Desktop/GQ.zip" withContentsOfDirectory:@"/Users/gengqun/Desktop//abc"];
}
文件解压
-(void)unzip
{
/*
第一个参数:要解压的文件路径
第二个参数:要存放到哪里
*/
[Main unzipFileAtPath:@"/Users/gengqun/Desktop/GQ.zip" toDestination:@"/Users/gengqun/Desktop/gengqun"];
}
标签:
原文地址:http://www.cnblogs.com/liugengqun/p/5140734.html