我下载一个压缩文件,并在文件目录中保存。 然后使解压使用ssziparchive 。 但没有得到从压缩文件中的任何数据。如何获取数据。而我不能够看到哪里是我的解压文件。在文件目录只是我正在此。
我已经使用这个代码,以使拉链为未压缩文件
NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:@"image.zip"];
NSString *zipPath =fullPath;
NSString *destinationPath =[documentsDirectory stringByAppendingPathComponent:@"unZipimage"];
NSLog(@"zip path==%@",zipPath);
NSLog(@"dest path==%@",destinationPath);
//
[SSZipArchive unzipFileAtPath:zipPath toDestination:destinationPath];