老外那弄来的一段FTP上传的代码

 最近做了个仿网易的图片上传控件,为ftp上传伤了不少脑筋。在网上找了很多这方面的资料,但都不是很理想。后来在codeproject上找到了个老外写的图片上传控件,在上面剽窃了段代码过来用,没有国内网友发的那么多累赘代码,效果也很好!

  1. private void Upload(string filename)
  2.         {
  3.             FileInfo fileInf = new FileInfo(filename);
  4.             string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name;
  5.             FtpWebRequest reqFTP;
  6.             // Create FtpWebRequest object from the Uri provided
  7.             reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerIP + "/wwwroot/upload/test/" + fileInf.Name));
  8.             // Provide the WebPermission Credintials
  9.             reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);
  10.             // By default KeepAlive is true, where the control connection is not closed
  11.             // after a command is executed.
  12.             reqFTP.KeepAlive = false;
  13.             // Specify the command to be executed.
  14.             reqFTP.Method = WebRequestMethods.Ftp.UploadFile;
  15.             // Specify the data transfer type.
  16.             reqFTP.UseBinary = true;
  17.             // Notify the server about the size of the uploaded file
  18.             reqFTP.ContentLength = fileInf.Length;
  19.             // The buffer size is set to 2kb
  20.             int buffLength = 2048;
  21.             byte[] buff = new byte[buffLength];
  22.             int contentLen;
  23.             // Opens a file stream (System.IO.FileStream) to read the file to be uploaded
  24.             FileStream fs = fileInf.OpenRead();
  25.             try
  26.             {
  27.                 // Stream to which the file to be upload is written
  28.                 Stream strm = reqFTP.GetRequestStream();
  29.                 // Read from the file stream 2kb at a time
  30.                 contentLen = fs.Read(buff, 0, buffLength);
  31.                 // Till Stream content ends
  32.                 while (contentLen != 0)
  33.                 {
  34.                     // Write Content from the file stream to the FTP Upload Stream
  35.                     strm.Write(buff, 0, contentLen);
  36.                     contentLen = fs.Read(buff, 0, buffLength);
  37.                 }
  38.                 // Close the file stream and the Request Stream
  39.                 strm.Close();
  40.                 fs.Close();
  41.             }
  42.             catch (Exception ex)
  43.             {
  44.                 MessageBox.Show(ex.Message, "Upload Error");
  45.             }
  46.         }

你可能感兴趣的:(老外那弄来的一段FTP上传的代码)