如何在c#中下载多个文件

时间:2010-09-15 21:05:18

标签: c# file download

我不会使用c#同时下载多个文件,但我不知道如何。

请帮忙。

2 个答案:

答案 0 :(得分:1)

您应该可以使用WebClient类。

        WebClient client = new WebClient();
        client.DownloadFileAsync(new Uri("http://test.com/file1"), "C:/Localfile1");
        client.DownloadFileAsync(new Uri("http://test.com/file2"), "C:/Localfile2");

答案 1 :(得分:0)

如果您尝试在asp.net上发布多个下载文件,我已经成功地将文件压缩在一起,并将结果作为响应流式传输。

编辑 -

这似乎不是你想要做的事,抱歉。