ZIP下载,存档未知格式或已损坏

时间:2013-04-03 02:56:51

标签: c# zip

以下代码在按下应用程序内的按钮时下载ZIP存档。文件似乎在那里,但当我尝试打开它或提取它时,我收到以下错误消息:Archive Unknown Format or Damaged

private void Button_Click_1(object sender, RoutedEventArgs e)
    {
        string url = @"http://dc659.4shared.com/download/eRPYQvPM/Medieval_Silver_for_PC.zip?tsid=20130403-023918-42de479a";
// Create an instance of WebClient
System.Net.WebClient client = new System.Net.WebClient();
// Hookup DownloadFileCompleted Event
client.DownloadFileCompleted +=    new AsyncCompletedEventHandler(client_DownloadFileCompleted);

// Start the download and copy the file to c:\temp
client.DownloadFileAsync(new Uri(url), 
@"Extract.zip");
 }

void client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
{
    MessageBox.Show("Thank you for downloading! To play extract the ZIP folder.");
}

1 个答案:

答案 0 :(得分:2)

您嵌入代码中的URL实际上并不对应于ZIP文件。当我尝试加载它时,我得到一个HTML页面,提示我下载文件。

您很可能需要在其他地方托管该文件。 4Shared几乎肯定不想让他们的服务用于这样的盲目下载。 (毕竟,他们从下载页面上的广告中赚取了很多收入。)