zoukankan      html  css  js  c++  java
  • 源码0602-08-掌握-解压缩

    //
    //  ViewController.m
    //  08-掌握-解压缩
    
    #import "ViewController.h"
    #import "Main.h"
    
    @interface ViewController ()
    
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        
        [Main unzipFileAtPath:@"/Users/xiaomage/Desktop/TestAbc.zip" toDestination:@"/Users/xiaomage/Desktop"];
    }
    
    - (void)createZipFile2
    {
        [Main createZipFileAtPath:@"/Users/xiaomage/Desktop/TestAbc.zip" withContentsOfDirectory:@"/Users/xiaomage/Desktop/Test"];
    }
    
    - (void)createZipFile
    {
        NSArray *paths = @[
                           @"/Users/xiaomage/Desktop/Test/Snip20150713_276.png",
                           @"/Users/xiaomage/Desktop/Test/Snip20150713_299.png",
                           @"/Users/xiaomage/Desktop/Test/Snip20150713_500.png"
                           ];
        [Main createZipFileAtPath:@"/Users/xiaomage/Desktop/TestAbc.zip" withFilesAtPaths:paths];
    }
    
    @end
    //
    //  ViewController.m
    //  09-掌握-解压缩
    
    #import "ViewController.h"
    #import <SSZipArchive.h>
    
    @interface ViewController ()
    
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        
    //    [SSZipArchive createZipFileAtPath:<#(NSString *)#> withFilesAtPaths:<#(NSArray *)#>];
    //    [SSZipArchive createZipFileAtPath:<#(NSString *)#> withContentsOfDirectory:<#(NSString *)#>];
    }
    
    @end
    本人无商业用途,仅仅是学习做个笔记,特别鸣谢小马哥,学习了IOS,另日语学习内容有需要文本和音频请关注公众号:riyuxuexishuji
  • 相关阅读:
    01 网络基础
    01 ansible的基本介绍
    10 面向对象的编程
    03 docker容器镜像基础
    09 异常处理
    08 输入输出
    07 数据结构
    02 docker的基本用法
    01 docker容器技术基础入门
    06 字符串
  • 原文地址:https://www.cnblogs.com/laugh/p/6605783.html
Copyright © 2011-2022 走看看