我尝试从 App Store 下载内容,我下载成功,现在我尝试使用 SSZipArchive 解压缩下载的文件。我的内容文件包含视频文件。(这是我将内容文件上传到 App Store步骤的方式
这是我的解压代码
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");
}
我总是得到文件文件不存在。如何获取视频文件?