ARTICLE

Upload a File Using File Transfer Protocol (FTP)

Posted by Sachin Kalia Articles | .NET 4.5 January 03, 2013
This article demonstrates how to upload a file using File Transfer Protocol (FTP).
Reader Level:
Download Files:
 

There are a few things you need to consider during implementation. I've also attached the code segment to understand things better and in a more convenient way for all geeks, who want to implement.

You need to add a reference of System.Net to use the FtpWebRequest object.

The code is given below to upload the file using FTP.

string PureFileName = new FileInfo("TotalAmount").Name;
            String uploadUrl = String.Format("{0}/{1}/{2}", "ftp://ftp.sachinkalia.com", "sachin_folder", PureFileName);
            FtpWebRequest request = (FtpWebRequest)WebRequest.Create(uploadUrl);
             request.Method = WebRequestMethods.Ftp.UploadFile;
            // This example assumes the FTP site uses anonymous logon.
             request.Credentials = new NetworkCredential("username", "password");
             request.Proxy = null;
             request.KeepAlive = true;
             request.UseBinary = true;
            request.Method = WebRequestMethods.Ftp.UploadFile;

             // Copy the contents of the file to the request stream.
            StreamReader sourceStream = new StreamReader(@"D:\Sapmle applications\TotalAmount.txt");
           byte[] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd());
             sourceStream.Close();
             request.ContentLength = fileContents.Length; 
            Stream requestStream = request.GetRequestStream();
             requestStream.Write(fileContents, 0, fileContents.Length);
             requestStream.Close();
            FtpWebResponse response = (FtpWebResponse)request.GetResponse();
            Console.WriteLine("Upload File Complete, status {0}", response.StatusDescription);

 

upload-the-file-on-FTP1.jpg

The status description given above describes that the data (File) has been uploaded to the FTP site with the "Transfer OK" message.

response.Close();

The similar approach is for deleting any file from FTP, whilst the only difference you are required to set is WebRequestMethods.Ftp.DeleteFile. The code is available below.

upload-the-file-on-FTP.jpg

Login to add your contents and source code to this article
Article Extensions
Contents added by chandru selvam on May 10, 2013
Contents added by chandru selvam on May 10, 2013
post comment
     
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Join a Chapter
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Get Career Advice from Experts