前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()
| using System.Net; // for WebClient |
public Form1()
{
InitializeComponent();
}
|
private void Button1_Click(object sender, EventArgs e)
{
string url = textBox1.Text;
string file = "C:\\TMP\\" + url.Substring(url.LastIndexOf("/") + 1);
WebClient wc = new WebClient();
try
{
wc.DownloadFile(url, file); // ダウンロードする
}
catch
{
textBox2.Text = "エラーです!";
return;
}
textBox2.Text = "ダウンロード終了!";
}
|
![]()