웹서버에서 화일을 다운로드 받기

VNote 2017.06.18 10:12:06 *: Dim ad As String = "http://www.vnote.kr/"
Dim fn As String = "myfile.xml"
Using client As New System.Net.WebClient
client.Credentials = New System.Net.NetworkCredential("id", "pwd")
client.DownloadFileAsync(ad + fn, "c:\" + fn)
End Using

.