-
website files
Hi,
The following code downloads particular files from a website.
How can I download all files in a particular folder in that web site?
Thanks
Dim strURL As String = "http://www.test.com/images/"
Dim strFileName() As String = {"image1.jpg", "image2.gif"}
Dim strFullPath As String
Dim wc(1) As WebClient
For i As Integer = 0 To 1
wc(i) = New WebClient
strFullPath = strURL & strFileName(i)
wc(i).DownloadFile(strFullPath, "C:\test\Net\VB\Windows\" & strFileName(i))
wc(i).Dispose()
Next
-
create a loop and count the number up for the file?
That or I'm sure there is a way to do a directory listing..hmm
-
download
Thanks for the reply, but my query really is if the files can be generically doenloaded from a website? if so how?
Thank you