文件的压缩和解压

文件的压缩和解压

Snip20151013_6.png
  • 创建压缩文件
+ (BOOL)createZipFileAtPath:(NSString *)path
           withFilesAtPaths:(NSArray *)paths;
+ (BOOL)createZipFileAtPath:(NSString *)path
    withContentsOfDirectory:(NSString *)directoryPath;

解压
+ (BOOL)unzipFileAtPath:(NSString *)path
          toDestination:(NSString *)destination
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {

    // 压缩1
//    [self zip1];

    // 压缩2
//    [self zip2];

    // 解压
    [self unZip];

}

压缩的方式1

- (void)zip2 {

    NSArray *filesPath = @[
                           @"/Users/hwm/Desktop/zip/Snip20151001_3.png",
                           @"/Users/hwm/Desktop/zip/Snip20151004_9.png",
                           @"/Users/hwm/Desktop/zip/Snip20151004_10.png"
                           ];
    /*
     第一个参数:创建的zip放在哪里
     第二个参数:要压缩哪些文件
     */
    [Main createZipFileAtPath:@"/Users/hwm/Desktop/MM.zip" withFilesAtPaths:filesPath];
}

压缩方式2

- (void)zip1 {

    /*
     第一个参数:创建的zip放在哪里
     第二个参数:要压缩的文件路径
     */
    [Main createZipFileAtPath:@"/Users/hwm/Desktop/hwm.zip" withContentsOfDirectory:@"/Users/hwm/Desktop/zip"];
}

解压

- (void)unZip {

    /*
     第一个参数:需要解压的zip在哪里
     第二个参数:解压的文件放到哪里
     */
    [Main unzipFileAtPath:@"/Users/hwm/Desktop/hwm.zip" toDestination:@"/Users/hwm/Desktop/unZipMM.zip"];
}
  • Posted by 博客园·w听话
  • 联系作者 简书·windy蚊子 新浪微博....
  • 原创文章,版权声明:自由转载-哈哈哒~ | windy
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容