标签:
//压缩文件的第一种方式 /* 第一个参数:压缩文件要保存的位置 第二个参数:要压缩哪几个文件 */ [Main createZipFileAtPath:fullpath withFilesAtPaths:arrayM]; //压缩文件的第二种方式 /* 第一个参数:文件压缩到哪个地方 第二个参数:要压缩文件的全路径 */ [Main createZipFileAtPath:fullpath withContentsOfDirectory:zipFile]; //如何对压缩文件进行解压 /* 第一个参数:要解压的文件 第二个参数:要解压到什么地方 */ [Main unzipFileAtPath:unZipFile toDestination:fullpath];
标签:
原文地址:http://www.cnblogs.com/HMJ-29/p/4943931.html