飞道的博客

ftp服务器搭建部署与C#实现ftp文件的上传

464人阅读  评论(0)

ftp服务器搭建部署与C#实现ftp文件的上传

一、简介

        FTP是File Transfer Protocol(文件传输协议)的英文简称,而中文简称为“文本协议”。用于Internet上的控制文件的双向传输。同时,它也是一个应用程序(Application)。基于不同的操作系统有不同的FTP应用程序,而所有这些应用程序都遵守同一种协议以传输文件。在ftp的使用当中,用户经常遇到两个概念:“下载”(Download)和“上传”(upload)。“下载”文件就是从远程主机拷贝文件至自己的计算机上;“上传”文件就是将文件从自己的计算机中拷贝至远程主机上。用Internet语言来说,用户可通过客户机程序向(从)远程主机上传(下载)文件。

二、搭建FTP服务器步骤(Window sserver 2016为例)

  • 安装FTP服务器及部署
    •  
    •  
    •  
    • 添加FTP站点
    • IP地址填本机地址(不填则是本机全部IP),端口默认21,SSL是一种数字加密证书,可申请,在此没有可选择无。
    •  添加ftp上传下载专用用户(也可以选择不添加,使用管理员用户也OK)
    •  
    •  
    •  到此ftp服务器安装和搭建部署,就完成了。

三、登录测试

  •  浏览器中输入命令 ftp://IP:端口,弹窗提示输入刚刚新建的用户名密码即可。
  • 用户名和密码输入正确的话就会出现公开的路径。

四、C#上传文件到FTP服务器

  •    
    
        
    1. /// <summary>
    2. /// FTP的服务器地址,格式为ftp://192.168.1.234:8021/。
    3. /// </summary>
    4. public string FTPCONSTR { get; set; }
    5. /// <summary>
    6. /// //FTP服务器的用户名
    7. /// </summary>
    8. private string FTPUSERID { get; set; }
    9. /// <summary>
    10. /// //FTP服务器的密码
    11. /// </summary>
    12. private string FTPPASSWORD { get; set; }
    13. private string ftpIP { get; set; }
    14. private string ftpPort { get; set; }
  • 
        
    1. public FTPHelper(string ip = "IP", string username = "登录用户名", string password = "用户密码", string port = "端口")
    2. {
    3. FTPCONSTR = string.Format( "{0}://{1}:{2}/", "ftp", ip, port);
    4. FTPUSERID = username;
    5. FTPPASSWORD = password;
    6. }
  •    
    
        
    1. /// <summary>
    2. /// 上传文件到远程ftp
    3. /// </summary>
    4. /// <param name="path">本地的文件目录</param>
    5. /// <param name="name">文件名称</param>
    6. /// <returns></returns>
    7. public bool UploadFile(string path, string name)
    8. {
    9. FileInfo f = new FileInfo(path);
    10. path = FTPCONSTR + name; //这个路径是我要传到ftp目录下的这个目录下
    11. FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create( new Uri(path));
    12. reqFtp.Method = WebRequestMethods.Ftp.UploadFile;
    13. reqFtp.UsePassive = false; //只需要添加这一句话
    14. reqFtp.UseBinary = true;
    15. reqFtp.Credentials = new NetworkCredential(FTPUSERID, FTPPASSWORD);
    16. reqFtp.KeepAlive = false;
    17. reqFtp.Method = WebRequestMethods.Ftp.UploadFile;
    18. reqFtp.ContentLength = f.Length;
    19. int buffLength = 2048;
    20. byte[] buff = new byte[buffLength];
    21. int contentLen;
    22. FileStream fs = f.OpenRead();
    23. try
    24. {
    25. Stream strm = reqFtp.GetRequestStream();
    26. contentLen = fs.Read(buff, 0, buffLength);
    27. while (contentLen != 0)
    28. {
    29. strm.Write(buff, 0, contentLen);
    30. contentLen = fs.Read(buff, 0, buffLength);
    31. }
    32. strm.Close();
    33. fs.Close();
    34. return true;
    35. }
    36. catch (Exception ex)
    37. {
    38. return false;
    39. }
    40. }
  •  调用
  •  
    
        
    1. string txtFilePath= "";
    2. try
    3. {
    4. OpenFileDialog openFileDialogTemp = new OpenFileDialog();
    5. openFileDialogTemp.Title = "选择要上传的文件";
    6. DialogResult dr = openFileDialogTemp.ShowDialog();
    7. if (!File.Exists(openFileDialogTemp.FileName))
    8. {
    9. GLOBALS.msgbox( "内容为空,请选择文件");
    10. return;
    11. }
    12. if (dr == DialogResult.OK)
    13. {
    14. txtFilePath= openFileDialogTemp.FileName;
    15. string filePath = this.txtFilePath.Text;
    16. }
    17. }
    18. catch (Exception ex)
    19. {
    20. }
    21. string id = DateTime.Now.ToString( "yyyyMMddHHmmss");
    22. string isPath = DateTime.Now.ToString( "yyyy-MM-dd");
    23. string filePath = txtFilePath;
    24. string uploadUrl = isPath + "\\" + id + ".jpg";
    25. FTPHelper FTPHelper = new FTPHelper();
    26. bool uploadresult = FTPHelper.UploadFile(filePath, uploadUrl);

        


转载:https://blog.csdn.net/qq_37192571/article/details/125560502
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场