美文网首页
iOS文件压缩和解压缩—ZipArchive

iOS文件压缩和解压缩—ZipArchive

作者: 小小在流浪 | 来源:发表于2019-08-26 15:40 被阅读0次

使用第三方解压缩框架ZipArchive

  • 推荐使用cocoaPoads安装:pod 'SSZipArchive'

常用操作

压缩
  • 压缩文件的第一种方式

     /*
      第一个参数:压缩文件要保存的位置
      第二个参数:要压缩哪几个文件
      第三个参数:加密密钥
      */
    + (BOOL)createZipFileAtPath:(NSString *)path withFilesAtPaths:(NSArray<NSString *> *)paths withPassword:(nullable NSString *)password;
    
  • 压缩文件的第二种方式

     /*
      第一个参数:文件压缩到哪个地方
      第二个参数:要压缩文件的全路径
      第三个参数:加密密钥
      */
     + (BOOL)createZipFileAtPath:(NSString *)path withFilesAtPaths:(NSArray<NSString *> *)paths withPassword:(nullable NSString *)password;
    
解压缩
  • 如何对压缩文件进行解压

     /*
     第一个参数:要解压的文件
      第二个参数:要解压到什么地方
      */
     [SSZipArchive unzipFileAtPath:unZipFile toDestination:fullpath];
    

相关文章

网友评论

      本文标题:iOS文件压缩和解压缩—ZipArchive

      本文链接:https://www.haomeiwen.com/subject/hqrusctx.html