ios压缩文件夹--基于ZipArchive

1.有问题的代码

NSArray *fileList = [fileManager contentsOfDirectoryAtPath:sourcePath error:nil];// 文件列表    
for(NSString *fileName in fileList){    
    NSString *filePath = [sourcePath stringByAppendingPathComponent:fileName];// 文件完整路径    
    [zipArchive addFileToZip:filePath newname:fileName];    
}  

上面的contentsOfDirectoryAtPath方法,遍历了sourcePath目录,列出所有的文件和子目录。问题是子目录会被压缩成一个无后缀的文件,而不是被当做文件夹来处理。改进了一下,应该用下面的代码:

2.可行的方案

/**
 *  根据路径将文件压缩为zip到指定路径
 *
 *  @param sourcePath 压缩文件夹路径
 *  @param destZipFile存放路径(保存重命名)
 */
-(void) doZipAtPath:(NSString*)sourcePath to:(NSString*)destZipFile
{
    NSFileManager *fileManager = [NSFileManager defaultManager];
    ZipArchive * zipArchive = [ZipArchive new];
    [zipArchive CreateZipFile2:destZipFile];
    NSArray *subPaths = [fileManager subpathsAtPath:sourcePath];// 关键是subpathsAtPath方法
    for(NSString *subPath in subPaths){
        NSString *fullPath = [sourcePath stringByAppendingPathComponent:subPath];
        BOOL isDir;
        if([fileManager fileExistsAtPath:fullPath isDirectory:&isDir] && !isDir)// 只处理文件
        {
            [zipArchive addFileToZip:fullPath newname:subPath];
        }    
    }
     [zipArchive CloseZipFile2];
}

区别在于不是调用contentsOfDirectoryAtPath方法,而是调用subpathsAtPath方法,这会列出sourcePath下的所有文件和子目录,然后在下面的循环里,将文件写入压缩文件,不处理文件夹。注意newname要直接用subPath,这样会自动在压缩文件中保留子目录下的文件完整路径

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值