0

ZipArchive 无法找到我要解压缩的文件。我究竟做错了什么?我正在尝试在 dispatch_async 中完成所有这些,这是我的问题吗?

我最终得到“找不到 zip 文件”。在我的日志中。当我检查查找应该在我的应用程序数据文件中创建的目录时,它无处可寻。zip文件如何存在。

这是一个与我正在尝试做的非常相似的教程的链接。我还添加了所需的库。

根据请求编辑代码以包括错误处理:

    NSLog(@"Got the data!");
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    NSString *path = [paths  objectAtIndex:0];

    //Save the data
    NSLog(@"Saving");
    NSString *dataPath = [path stringByAppendingPathComponent:@"TKAPlacesImages.zip"];
    dataPath = [dataPath stringByStandardizingPath];

    NSError *error = nil;
    [urlData writeToFile:dataPath options:0 error:&error];

    if(!error)
    {

        if (![defaults objectForKey:@"places images path"]) {
            [defaults setObject:path forKey:@"places images path"];

            [defaults synchronize];
        }

        ZipArchive* za = [[ZipArchive alloc] init];
        if( [za UnzipOpenFile:dataPath] )
        {
            BOOL ret = [za UnzipFileTo:path overWrite: YES];
            if (NO == ret){} [za UnzipCloseFile];

            NSLog(@"Successful unzip of: %@",@"/Library/Caches/TKAPlacesImages.zip");
        }
        else
        {



            NSLog(@"Could not find zip file.");

        }
    }
    else
    {
        NSLog(@"Error saving file %@",error);
    }

添加了 PHP 代码

function zip_image_files($images) {

    // Prepare File
    $file = tempnam("tmp", "zip");
    $zip = new ZipArchive();
    $zip->open($file, ZipArchive::OVERWRITE);

    $imagesCount = count($images);
    $imagesString = '';

    for($i=0; $i < $imagesCount; $i++)
    {
        // Stuff with content
        $imagesString = ".." . $images[$i];

        if(file_exists($imagesString))
        {
            $zip->addFile($imagesString);
        }
        else
        {
            echo $imagesString;
        }

    }//end for

    // Close and send to users
    $zip->close();
    header('Content-Type: application/zip');
    header('Content-Length: ' . filesize($file));
    header('Content-Disposition: attachment; filename="file.zip"');
    readfile($file);
    unlink($file); 

}
//end function

编辑 我的函数返回一个 19.2MB 的 zip 文件。但是在我的应用程序数据文件中,zip 文件是 0 字节。

4

1 回答 1

0

我敢打赌,(1)urlData是 nil ,所以什么都没有写,因为没有什么可写的,或者(2)urlData没有压缩数据并且解压缩它失败了。很可能第一个是实际问题,因为您说您没有看到任何书面文件。

于 2014-03-21T19:05:27.790 回答