download

farshad

Well-known member
Joined
May 1, 2003
Messages
109
Location
London
Hi everyone,
Could you giude me on the following topic please, or what topic does this come under?
Thanks

I would like to download files from a web site and place them on my local machine.
 
Ive never tried that but I think its the same way as Copying a file on the HD... the diference its the path...

Try the methods on the System.IO namespace... I really think it will do...
 
You can use the WebClient class to downlaod a file:
Code:
Dim wc As New System.Net.WebClient
download the file using the DownloadFile method which accepts the location of the file on the internet
and the location to which you want to download to.
wc.DownloadFile("address of file", "Location to download to")
 
Back
Top