在C#中上傳文件和下載文件的簡(jiǎn)單示例
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
在C#中上傳文件和下載文件的簡(jiǎn)單示例-附源碼下載,類似完成FTP的功能,不過(guò)本程序還不能算是一個(gè)FTP程序,操作方法簡(jiǎn)單,選擇需要上傳的文件,再勾選上邊的對(duì)應(yīng)操作項(xiàng)即可,下載時(shí)候記著選擇文件下載的本地路徑。
private WebClient MyWebClient=new WebClient(); private void BeginBtn_click(object sender, System.EventArgs e) { string URL=textBox1.Text; if(radioButton1.Checked==false&&radioButton2.Checked==false) MessageBox.Show("Please choose the mode!"); else { if(radioButton1.Checked==true) { try { statusBar1.Text="Begin to download"; MyWebClient.DownloadFile(URL,textBox2.Text); statusBar1.Text="Download Successfully!"; } catch(WebException ee) {MessageBox.Show(ee.Message);} } if(radioButton2.Checked==true) { try { statusBar1.Text="Begin to upload"; MyWebClient.UploadFile(URL,textBox2.Text); statusBar1.Text="Upload Successfully!"; } catch(WebException ee) {MessageBox.Show(ee.Message);} } } } 該文章在 2021/2/4 12:09:38 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |