How to download multiple files in the same url?
I've try t use HttpWebRequest and HttpWebResponse to download files,but the problem is the connection speed of the network.This is my example Assume that i have 100 files name A1,A2,A3..A100 in the same url folder http://www.myweb.com/data/ Could i make just 1 connection to http://www.myweb.com/data , start download 100 files and then quit the connection? if so,how? Thank =)
when i try to download these file i must connect to
http://www.myweb.com/data/A1
http://www.myweb.com/data/A2
.
.
.
So it has 100 connections!!!.
It's not make sense why i have to open 100 connections to download file in the same url.

