Click here to Skip to main content
15,891,951 members
Articles / Web Development / ASP.NET
Tip/Trick

Upload file to server using FTP

Rate me:
Please Sign up or sign in to vote.
4.47/5 (32 votes)
14 Dec 2011CPOL1 min read 220.4K   33   22
You can upload your file to server by writing your own code using FTP details

Introduction


This article will explain how to upload your file to server using FTP details.

Background

I am a programmer having intermediate level of experience in .NET development. One fine day, I was asked to create a scheduler program which would create a file and upload that to the server using FTP details. I started developing the code by using StreamWriter class, suddenly I stopped..., thinking of why I am using StreamWriter class as it is just to write a file, and my problem was to upload a file. Then after some R&D, I got the class which helped me to upload the file.


Using the Code


In order to upload a file using FTP details, one should know the server’s FTP URL, FTP username and FTP password.

We can achieve the file uploading task by using the below three inbuilt classes of .NET: FtpWebRequest, WebRequestMethods, and NetworkCredential .



To start with the coding part.

First we need to import the below namespaces


C#
using System.IO;
using System.Net;


Then we need to declare four variables as below:

C#
String sourcefilepath = "@absolutepath"; // e.g. "d:/test.docx"
String ftpurl = "@ftpurl"; // e.g. ftp://serverip/foldername/foldername
String ftpusername = "@ftpusername"; // e.g. username
String ftppassword = "@ftppassword"; // e.g. password


Note: Please replace @absolutepath, @ftpurl, ftpusername, @ftppassword with your actual values.

Copy the below code and paste in your class:


C#
private static void UploadFileToFTP(string source)
        {
            try
            {
                string filename = Path.GetFileName(source);
                string ftpfullpath = ftpurl;
                FtpWebRequest ftp = (FtpWebRequest)FtpWebRequest.Create(ftpfullpath);
                ftp.Credentials = new NetworkCredential(ftpusername, ftppassword);

                ftp.KeepAlive = true;
                ftp.UseBinary = true;
                ftp.Method = WebRequestMethods.Ftp.UploadFile;
                
                FileStream fs = File.OpenRead(source);
                byte[] buffer = new byte[fs.Length];
                fs.Read(buffer, 0, buffer.Length);
                fs.Close();

                Stream ftpstream = ftp.GetRequestStream();
                ftpstream.Write(buffer, 0, buffer.Length);
                ftpstream.Close();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }


The final point will be calling the above procedure by using the below code on whatever event you want the operation to be performed.

UploadFileToFTP(sourcefilepath);

And we are done...

Points of Interest


I got an opportunity to learn about the below classes:

  • FtpWebRequest
  • WebRequestMethods
  • NetworkCredential

    License

    This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


    Written By
    Team Leader
    India India
    This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

    Comments and Discussions

     
    QuestionException Occured Pin
    Member 85836026-Oct-12 0:06
    Member 85836026-Oct-12 0:06 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.