我尝试从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");
}
总是我的文件文件不存在。我怎样才能获得视频文件?