Iphone 使用ASIHTTPRequest从服务器下载文件夹

Iphone 使用ASIHTTPRequest从服务器下载文件夹,iphone,ios,asihttprequest,Iphone,Ios,Asihttprequest,是否可以使用ASIHTTPRequest从服务器下载整个文件夹?如果没有,我可以压缩文件夹并下载它。从我所读到的内容来看,ASIHTTPRequest将解压缩压缩文件。我已经试过了,但似乎没能成功。我不确定是否正确设置了路径 ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:urlOfFolder; [request setDownloadDestinationPath:[NSString stringWithFormat:@"%@

是否可以使用ASIHTTPRequest从服务器下载整个文件夹?如果没有,我可以压缩文件夹并下载它。从我所读到的内容来看,ASIHTTPRequest将解压缩压缩文件。我已经试过了,但似乎没能成功。我不确定是否正确设置了路径

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:urlOfFolder;
[request setDownloadDestinationPath:[NSString stringWithFormat:@"%@/%@", documentsDirectory, @"download_folder"]];

它仍然是一个HTTP请求。当您请求url时,浏览器是否下载文件夹?我想它不会…它不会下载,但它会显示其中包含的文件列表。@Kevin_TA您解决了这个问题了吗?如果是,请为我提供同样的解决方案,因为我也有同样的问题。谢谢