Click here to Skip to main content
15,879,095 members
Articles / Programming Languages / C#
Article

FTP Component in C#, for .NET

Rate me:
Please Sign up or sign in to vote.
4.73/5 (27 votes)
29 May 20021 min read 329.5K   5K   105   62
An FTP component and sample FTP client, in C#.

Image 1

Introduction

For my first experience writing a C# component I decided to implement an FTP Component. This is the sample code to use the component. The component code is not really guaranteed to work fine in this state, but I thought that it might be of some interest and that feedback will help to improve or correct features.

Simply add the component to the ToolBox (Using customize Toolbox) and put it on your form. The code project contains a simple FTP Client. You may have to change FTPCom Reference in TestFTPCom project to test the sample. Remove the old reference and Add Reference to FtpCom.DLL

Sample Code

Connect to the FTP Server

C#
ftpc.Username = EFUsername.Text;
ftpc.Password = EFPassword.Text;

ftpc.Hostname = CBFTPServer.Text;
ftpc.Connect();

Logging in to the server

When the connection is completed, the object receives the event Connected, you can then send the Login Command.

C#
private void ftpc_Connected(object sender, FTPCom.FTPEventArgs e)
{
    ftpc.Login();
}

The event Logged is sent after successful connection

C#
private void ftpc_Logged(object sender, FTPCom.FTPEventArgs e)
{
    ftpc.Dir();
}

Getting a directory listing

The DirCompleted event is received when Dir command is completed FileCount contains the number of files, use IsFolder to find if File is a folder. GetFileName and GetFileSize return the name and the size of the files

Note : File Collection is not implemented in this version as it should be!

C#
private void ftpc_DirCompleted(object sender, FTPCom.FTPEventArgs e)
{
    int i = 0;
    int idimage = 0;
    string msg;

    msg = "Transfered " + e.TotalBytes.ToString() + " bytes in " + 
          ((float)e.TimeElapsed / 1000).ToString() + " seconds" + CRLF; 
    TextLog.SelectionColor = Color.Black;
    TextLog.AppendText(msg);

    ServerView.BeginUpdate();
    ServerView.Items.Clear();
    ImgListServerSmall.Images.Clear();

    ListViewItem lvItem = new ListViewItem("..");
    ServerView.Items.Add(lvItem);

    for (i = 0; i < ftpc.FileCount; i++)
    {
        if (ftpc.IsFolder(i))
        {
            string[] items = new String[2];
            items[0] = ftpc.GetFileName(i);
            items[1] = ftpc.GetFileSize(i).ToString();
            ImgListServerSmall.Images.Add (m_IconFolder);
            ServerView.Items.Add(new ListViewItem(items, idimage++));
        }
    }
    for (i = 0; i < ftpc.FileCount; i++)
    {
        if (!ftpc.IsFolder(i))
        {
            string[] items = new String[2];
            items[0] = ftpc.GetFileName(i);
            items[1] = ftpc.GetFileSize(i).ToString();
            ImgListServerSmall.Images.Add (ExtractIcon.GetIcon(items[0], false));
            ServerView.Items.Add(new ListViewItem(items, idimage++));
        }
    }
    ServerView.EndUpdate();
    this.Cursor = Cursors.Default;
}

Downloading a file

File Download on Local View drag drop

C#
private void ServerView_MouseMove(object sender, 
                                  System.Windows.Forms.MouseEventArgs e)
{
    if (e.Button != 0)
    {
        string msg = "";

        for (int i = 0; i < ServerView.SelectedItems.Count; i++)
        {
            msg += ServerView.SelectedItems[i].Text + "\n";
        }

        ServerView.DoDragDrop(msg, DragDropEffects.Copy | DragDropEffects.Move);
    }
}

private void LocalView_DragEnter(object sender, System.Windows.Forms.DragEventArgs e)
{
    if (e.Data.GetDataPresent(DataFormats.Text)) 
        e.Effect = DragDropEffects.Copy;
    else
        e.Effect = DragDropEffects.None;
}

private void LocalView_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
{
    string msg = e.Data.GetData(DataFormats.Text).ToString();

    string[] filename = msg.Split(new char[] { '\n' });
    foreach (string sfile in filename)
    {
        ftpc.FileDownload(sfile);
    }
}

When downloading a file is complete the FileDownloadCompleted event is fired

C#
private void ftpc_FileDownloadCompleted(object sender, FTPCom.FTPEventArgs e)
{
    string msg = "Transfered " + e.TotalBytes.ToString() + " bytes in " + 
                 ((float)e.TimeElapsed / 1000).ToString() + " seconds" + CRLF; 
    TextLog.SelectionColor = Color.Black;
    TextLog.AppendText(msg);
    FillLocalView(m_currentFolder);
}

Deleting selected files

C#
for (int i = 0; i < ServerView.SelectedItems.Count; i++)
{
    ftpc.Delete (ServerView.SelectedItems[i].Text);
}
ftpc.Dir();

Rename a file

C#
private void ServerView_AfterLabelEdit(object sender, 
                         System.Windows.Forms.LabelEditEventArgs e)
{
    if (e.Label != null)
    {
        this.Cursor = Cursors.WaitCursor;

        string newfilename = e.Label;
        if (m_previousfilename == "New Folder")
        {
            ftpc.DirCreate(newfilename);
        }
        else
        {
            ftpc.Rename(m_previousfilename, newfilename);
        }
        ftpc.Dir();
    }
}

Close the connection

C#
ftpc.Disconnect();
ServerView.Items.Clear();

Hope this help. Any comments are welcome.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


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

Comments and Discussions

 
GeneralFTP Commponent Pin
cndy1985010619-Apr-09 23:41
cndy1985010619-Apr-09 23:41 
GeneralRe: FTP Commponent Pin
cwvdavid26-Sep-09 8:38
cwvdavid26-Sep-09 8:38 
GeneralCool Pin
Axonn Echysttas12-Mar-09 13:50
Axonn Echysttas12-Mar-09 13:50 
GeneralA comfortable FTP class in .NET Pin
Elmue27-Aug-08 12:18
Elmue27-Aug-08 12:18 
Questionftp folder download Pin
sivakl_20019-Apr-08 23:13
sivakl_20019-Apr-08 23:13 
GeneralNot listing the remote directory contents completely Pin
Mathachan Kulathinal28-Nov-06 19:10
Mathachan Kulathinal28-Nov-06 19:10 
QuestionRe: Not listing the remote directory contents completely Pin
sivakl_20019-Apr-08 23:30
sivakl_20019-Apr-08 23:30 
QuestionDownloading FTP Folder [modified] Pin
napster_ghb9-Aug-06 19:37
napster_ghb9-Aug-06 19:37 
AnswerRe: Downloading FTP Folder Pin
napster_ghb10-Aug-06 22:19
napster_ghb10-Aug-06 22:19 
QuestionRe: Downloading FTP Folder Pin
sivakl_20019-Apr-08 22:56
sivakl_20019-Apr-08 22:56 
GeneralREMOVE / UPLOAD DIRECTOR WITH SUB DIRECTOR Pin
raznalove1-Jul-06 2:37
raznalove1-Jul-06 2:37 
GeneralCode does not work Pin
mbde23-Mar-06 2:32
mbde23-Mar-06 2:32 
GeneralFTP events in c# Pin
CRASH726-Dec-05 0:04
CRASH726-Dec-05 0:04 
Generalnot all data Pin
drxy13-Feb-05 20:30
drxy13-Feb-05 20:30 
GeneralJaimon's FTP Client library may help Pin
Casp14-Dec-04 5:54
Casp14-Dec-04 5:54 
GeneralNon-Compatibility bug with Sun Pin
Anonymous24-Nov-04 3:09
Anonymous24-Nov-04 3:09 
GeneralRe: Non-Compatibility bug with Sun Pin
mrBussy1-Aug-05 4:44
mrBussy1-Aug-05 4:44 
GeneralAnother free, open-source .NET FTP component Pin
h_c_a_andersen10-Nov-04 12:15
h_c_a_andersen10-Nov-04 12:15 
GeneralRe: Another free, open-source .NET FTP component Pin
Robert J. Lorenzini3-Mar-06 10:43
Robert J. Lorenzini3-Mar-06 10:43 
GeneralRe: Another free, open-source .NET FTP component [modified] Pin
h_c_a_andersen12-Dec-06 16:45
h_c_a_andersen12-Dec-06 16:45 
GeneralWrong in the GetIcon(string strPath, bool bSmall) method Pin
sehr.andreas20-Oct-04 12:01
sehr.andreas20-Oct-04 12:01 
GeneralTwo question Pin
CliniC16-Aug-04 2:19
CliniC16-Aug-04 2:19 
GeneralInput fail -&gt; freeze Pin
CliniC5-Jun-04 22:49
CliniC5-Jun-04 22:49 
QuestionHow to use it in background? Pin
Jackfan23-Mar-04 21:45
Jackfan23-Mar-04 21:45 
AnswerRe: How to use it in background? Pin
byshome15-Sep-05 20:30
byshome15-Sep-05 20:30 

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.