利用FileZillaServer编写客户端代码实现文件下载

1.服务器端利用FileZillaServer搭建,设置好服务器IP 访问用户名及密码
2.客户端编写程序访问
1)app.config配置
 <appSettings>
    <add key="ftpAddr" value="210.31.41.3"/>
    <add key="ftpUserName" value="xiong"/>
    <add key="ftpPassword" value="000123"/>
  </appSettings>

2)利用开源的FtpClient.cs的类,再编写一点程序
  private void btnDownload_Click(object sender, EventArgs e)
        {
            string ftpAddr = ConfigurationManager.AppSettings["ftpAddr"];
            string ftpUserName = ConfigurationManager.AppSettings["ftpUserName"];
            string ftpPassword = ConfigurationManager.AppSettings["ftpPassword"];
            string datestr = DateTime.Now.ToString("yyyyMMdd"); 
            FtpClient fc = new FtpClient(ftpAddr, ftpUserName, ftpPassword);
            if (cmbSavePath.Text.Trim() == "")
            { MessageBox.Show("请选择保存路径"); return; }
            bool b = fc.Download("WFBE507T98A5858-906-_Sorter.csv", cmbSavePath.Text + ":\\WFBE507T98A5858-906-_Sorter.csv");
            if (b == true)
            { MessageBox.Show("下载成功"); }
            else
            { MessageBox.Show("下载失败"); }
        }

你可能感兴趣的:(利用FileZillaServer编写客户端代码实现文件下载)