如何在ios中解压缩文件

时间:2013-10-25 06:10:29

标签: ios app-store unzip ssziparchive

我尝试从App商店下载内容,我成功下载,现在我尝试使用SSZipArchive解压缩下载的文件。我的内容文件包含视频文件。 (这是我将内容文件上传到App Store steps I did

的方式

这是我解压缩的代码

NSString *zipPath = @"/private/var/mobile/Applications/1433FA1B-24FA-4E39-BB57-80569ECBCBAB/Library/Caches/7AD5C113-253D-4F34-8030-612FFE4347E1.zip";

NSString *outputPath = [self _cachesPath:@"Regular"];

[SSZipArchive unzipFileAtPath:zipPath toDestination:outputPath delegate:self];

NSString *testPath = [outputPath stringByAppendingPathComponent:@"videofile.mp4"];

bool fileExists = [[NSFileManager defaultManager] fileExistsAtPath:testPath];

if (fileExists)
{
     NSLog(@"file exists");
}
else
{
     NSLog(@"file not exists");
}

总是我的文件文件不存在。我怎样才能获得视频文件?

0 个答案:

没有答案