我正在下载一个 zip 文件并保存在文档目录中。然后使用ssziparchive进行解压缩。但没有从 zip 文件中获取任何数据。如何获取数据。我无法看到我的解压缩文件在哪里。在文档目录中只有我得到这个。
我已经使用此代码将 zip 制作为 un zip 文件
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];