How to upload file to FTP server using C#

January 01, 2013 by Anuraj

.Net .Net 3.0 / 3.5 .Net 4.0 Windows Forms

From .net framework 2.0 onwards .net supports FTP operations. Like HttpWebRequest and HttpWebResponse, for FTP operations, FtpWebRequest and FtpWebResponse classes are available, under System.Net namespace. Here is the code snippet, which will help you to upload a file to FTP server, using C#.

string url = "ftp://myserver.com/sample.txt";
var ftpWebRequest = WebRequest.Create(url) as FtpWebRequest;
ftpWebRequest.Method = WebRequestMethods.Ftp.UploadFile;
ftpWebRequest.Credentials = 
    new NetworkCredential("username", "password");
byte[] fileData = GetFileData(@"C:\sample.txt");
using (var requestStream = ftpWebRequest.GetRequestStream())
{
    requestStream.Write(fileData, 0, fileData.Length);
}
var response = ftpWebRequest.GetResponse() as FtpWebResponse;

Console.WriteLine(response.StatusDescription);

And here is the GetFileData function, which will return byte array from File.

using (var sr = new StreamReader(filename))
{
    return ASCIIEncoding.ASCII.GetBytes(sr.ReadToEnd());
}

From the response object, you can get the information about the status of the operation. You can either use StatusCode enum property or StatusDescription property. You can find more information about the status code enumeration on MSDN

Happy Coding :)

Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub