Click here to Skip to main content
Click here to Skip to main content

C# FTP Client Library

By , 23 May 2007
 

Introduction

This code is an FTP class library for adding FTP access to your projects. It is heavily based on a project (see background for original code), and is now contained in the source files. I was not sure how to update the original article or add to it so I am publishing this as a new article since there was an extensive re-work of the original code in an attempt to make it more developer-friendly.

Background

This article, and code, are based upon the ftplib posted by J.P. Trosclair. A link to the article is here. I have left original copyright and credit notices in with the updated version of the code.

Using the code

I used nDoc to create a CHM file (in the doc directory of the code) to help with implementation. Its fairly simple, and you will mainly need basic FTP connection information (IP, username, etc.) to use the library.

An example is included in the documentation, and appears as so (to upload a file):

OpenFTP.FTP f = new OpenFTP.FTP();
f.Connect("127.0.0.1", "username_here", "password_here");
f.ChangeDirectory("somedirectory");
f.Files.Upload(Path.GetFileName(sFileName), Path.GetFileName(sFileName));

while (!f.Files.UploadComplete)
{
    Console.WriteLine("Uploading: TotalBytes: " + 
        f.Files.TotalBytes.ToString() + ", : PercentComplete: " + 
        f.Files.PercentComplete.ToString());
}
Console.WriteLine("Upload Complete: TotalBytes: " + 
    f.Files.TotalBytes.ToString() + ", : PercentComplete: " + 
    f.Files.PercentComplete.ToString());

f.Disconnect();
f = null;

Points of Interest

I liked the original article but decided that even though I could read and implement the code I wanted its implementation to be more simplistic so months later I won't have to re-read any code to figure how to include the methods in a new project. I have tried to remove the rough edges.

License

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

About the Author

jmers
Web Developer
Anonymous Proxy Anonymous Proxy
I am a Senior-level .NET developer using C# for about 5+ years now.
 
Codeproject has been a tremendous resource for me over the years.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHow to check if the connection is established?memberAnLa06109527-Jun-11 4:08 
GeneralAlex FTPS ClientmemberB.Ritter5-Mar-11 0:09 
Generalexpect a demomemberpclion13-Feb-11 22:55 
GeneralNot work in download ..memberAlexB4712-Feb-11 7:33 
GeneralBug solutionsmemberrobnet17-Aug-10 0:28 
GeneralRe: Bug solutionsmemberB.Ritter1-Nov-10 6:37 
QuestionI cannot get the listing of the files plus other bugsmemberEvandrojr2-Mar-10 10:22 
GeneralActive Modememberliglio27-Jan-10 14:33 
GeneralRe: Active Modememberjmers27-Jan-10 17:13 
GeneralRe: Active Modememberliglio28-Jan-10 3:13 
GeneralRe: Active ModememberDaniel Castenholz29-Jan-10 8:22 
QuestionSocketException Error Code 11004memberZac Greve10-Jan-10 10:54 
AnswerRe: SocketException Error Code 11004memberjmers10-Jan-10 15:18 
Questionupload foldermemberDirekt200718-Nov-09 4:07 
GeneralCF 3.5memberGateone7512-Aug-09 2:32 
RantLOLmemberSeishin#8-Apr-09 2:01 
GeneralRe: LOLmemberPhylum12322-Oct-09 5:25 
GeneralExceoption when trying to upload [modified]mvpJohn Simmons / outlaw programmer8-Jan-09 11:52 
QuestionHow to connect to two FTP ServersmemberLearnNetnAll15-Dec-08 21:59 
GeneralA socket operation encountered a dead networkmemberjosephx2k715-Dec-08 12:41 
Generalgood librarymemberemilioarp12-Nov-08 7:30 
Generalconnection was forcibly closed by the remote host at System.Net.Sockets.membernext100years11-Nov-08 0:55 
GeneralA comfortable FTP class in .NETmemberElmue27-Aug-08 12:22 
GeneralChangeDirectory ChrashmemberMember 42541521-May-08 11:52 
GeneralRe: ChangeDirectory Chrashmemberjmers3-May-08 9:36 
GeneralRe: ChangeDirectory Chrashmemberstreit31-May-08 13:13 
GeneralRe: ChangeDirectory Chrashmemberemilioarp2-Oct-08 8:47 
GeneralRe: ChangeDirectory ChrashmemberB.Ritter3-Nov-08 9:50 
GeneralRe: ChangeDirectory Chrash [modified]memberB.Ritter8-Nov-08 2:42 
GeneralRe: ChangeDirectory Chrashmemberemilioarp10-Nov-08 8:18 
GeneralRe: ChangeDirectory ChrashmemberB.Ritter10-Nov-08 22:12 
GeneralRe: ChangeDirectory Chrashmemberemilioarp12-Nov-08 4:24 
GeneralRe: ChangeDirectory Chrashmemberjose.mira27-Apr-09 7:38 
GeneralRe: ChangeDirectory Chrashmemberjose.mira4-May-09 7:01 
Generalerror connecting the ftpservermembernanio31-Jan-08 20:56 
GeneralRe: error connecting the ftpservermemberjmers30-Apr-08 5:57 
GeneralSubdirectories when uploadingmemberdannywooly21-Nov-07 0:50 
GeneralRe: Subdirectories when uploadingmemberjmers21-Nov-07 4:24 
GeneralFiles downloadmemberblablablaidan24-Oct-07 22:05 
GeneralRe: Files downloadmemberjmers25-Oct-07 1:13 
GeneralRe: Files downloadmemberblablablaidan25-Oct-07 3:09 
GeneralRe: Files downloadmemberjmers25-Oct-07 3:43 
GeneralRe: Files downloadmemberblablablaidan25-Oct-07 4:15 
GeneralRe: Files downloadmemberjmers30-Apr-08 6:02 
GeneralRe: Files downloadmemberG_Pow18-Sep-08 11:39 
GeneralRe: Files downloadmemberemilioarp12-Nov-08 7:23 
GeneralRe: Files downloadmemberMember 45941477-Apr-09 15:40 
GeneralList Directoriesmemberblablablaidan17-Oct-07 1:58 
GeneralRe: List Directoriesmemberjmers24-Oct-07 5:38 
GeneralRe: List Directoriesmemberblablablaidan24-Oct-07 22:01 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 23 May 2007
Article Copyright 2007 by jmers
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid