美文网首页
文件压缩解压缩

文件压缩解压缩

作者: rlqs | 来源:发表于2016-07-17 06:38 被阅读45次

    技术方案:

    1.第三方框架:

    SSZipArchive

    2.依赖于系统库:libz.dylib

    压缩:

    /**

    *zipPath:产生zip文件的最终路径

    *sampleDataPath:需要进行压缩的文件路径

    */

    [SSZipArchive  createZipFileAtPath:zipPath withContentsOfDirectory:sampleDataPath];

    /**

    *path:产生zip文件的最终路径

    */

    + (BOOL)createZipFileAtPath:(NSString*)path withFilesAtPaths:(NSArray*)paths;

    解压缩:

    [SSZipArchive unzipFileAtPath:zipPath toDestination:unzipPath];

    相关文章

      网友评论

          本文标题:文件压缩解压缩

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