download

farshad

Centurion
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.
 
I've never tried that but I think it's the same way as Copying a file on the HD... the diference it's 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:
Visual Basic:
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