■■■

2016年4月3日日曜日

ネット上のファイルをダウンロードして保存する方法

ネット上のファイルをダウンロードして保存する方法
VB.NET
Dim wc As New System.Net.WebClient()
wc.DownloadFile("http://localhost/image.gif", "c:\test\1.gif")
wc.Dispose()
C#

System.Net.WebClient wc = new System.Net.WebClient();
wc.DownloadFile("http://localhost/image.gif", @"c:\test\1.gif");
wc.Dispose();
■■■