Click here to Skip to main content
6,822,613 members and growing! (15,715 online)
Email Password   helpLost your password?
General Programming » Internet / Network » Internet & Network     Intermediate

FTP Windows Forms Client, using Managed Assembly

By Fakher Halim

This is a FTP downloading Winform application utilizing Indy.Sockets.dll.
C#, Windows, .NET1.0, .NET1.1VS.NET2003, Dev
Posted:15 Apr 2004
Updated:22 Apr 2004
Views:100,027
Bookmarked:29 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
11 votes for this article.
Popularity: 3.09 Rating: 2.97 out of 5
2 votes, 18.2%
1
1 vote, 9.1%
2
2 votes, 18.2%
3
3 votes, 27.3%
4
3 votes, 27.3%
5

Sample Image

Introduction

This article describes how to create a fully functional FTP client Windows Forms application in C# using an external open source assembly. Despite its richness, the .NET framework library doesn�t currently have classes specifically written for FTP. This often makes many users write their own FTP client library in C#. Since this is not exactly something a typical application developer would likely to have expertise in, this article uses an existing .NET TCP/IP protocol library assembly to build a complete application. It leverages the agility of Windows Forms and regular expressions object Regex to parse the directory listing for directory navigation/file download.

Background

The FTP functionality limitation in .NET, however, is no longer an issue because of its strong interoperability with managed assemblies written under any other language. In this article, we are using �Indy for Visual Studio .NET Developers�. Despite its Delphi origin, the interoperability with C# is not a big challenge. This (Indy.Sockets.dll) assembly is freely downloadable from here.

Using the code

Demo Installation/Operation

Please extract this zip file into any directory, let us assume, it is �D:\�.

  1. Copy Indy.Sockets.dll downloaded from here into D:\Indy\bin\Debug.
  2. Open Visual Studio .NET. File/Open/Project, browse to D:\Indy; double click Indy.sln.
  3. Press F5 to start.
  4. Enter FTP Server name, user ID, and password.
  5. Click "Login", it would go to the server, and display a list of directories in the list box.
  6. Double clicking on any directory would take you to that directory, refreshing the listing.
  7. Clicking on the "^" button would take you [back to] the parent directory, refreshing the list.
  8. Double clicking on any file would prepare that file for download into current working directory.
  9. Clicking the "DOWNLOAD" button would start the transfer. It would be invisible once download starts. The status bar would show the current file being downloaded.
  10. Entering another FTP site name and clicking "Login" would log you off from current site, logging in to the new site.
  11. Closing the form would log you off the FTP server before exiting.

(If you don't have Visual Studio .NET 2003, follow README.txt for .NET Framework 1.1 nmake build)

Code Description

Setting up references/Namespaces

The project has been setup to refer Indy assembly D:\Indy\bin\Debug\Indy.Sockets.dll, and use Indy.Sockets.IndyFTP namespace. The namespace System.Collections.Specialized was used because StringCollection was required by List() method of IndyFTP instance.

using Indy.Sockets.IndyFTP;
using System.Collections.Specialized;
using System.Text.RegularExpressions;

Load

Creates FTP instance into lFtp.

private void Form1_Load(object sender, System.EventArgs e) {
    lFtp = new FTP();
}

Login

Disconnects if already logged in, uses Connect() method to login in Passive mode, drawing directory contents into ListBox.

private void btnLogin_Click(object sender, System.EventArgs e) {
    if(txtDirectory.Text!="")//aleady logged in; disconnect first

        lFtp.Disconnect();

    statusBar1.Text=string.Format("Logging into {0} ..", txtHost.Text);
    lFtp.Host=txtHost.Text;
    lFtp.Username=txtUserName.Text;
    lFtp.Password=txtPassword.Text;
    try{lFtp.Connect();}catch(Exception ex){
        statusBar1.Text=ex.Message;return;
    }
    lFtp.Passive=true;
    drawDirectoryContents();
}

Directory Item Double Clicking: Changing Directory/Preparing for download

When someone double-clicks on directory ListBox, using Regular Expression, the contents of column 1..8 are assumed to be the detail attributes, file/directory name would be in 9th column. Sometimes, even the file/directory names have embedded spaces, which would make them as separate fields. This is done by concatenating back them in string name.

The first column of a list box, if starting from 'd', makes the double clicking change directory; a '-' in that FTP column prepares file to be available for download.

private void lstDirectory_DoubleClick(object sender, System.EventArgs e) {
    string sel=lstDirectory.SelectedItem.ToString();
    string[] fields=Regex.Split(sel, " +");
    const int startField=8;//the file/directory name starts after 8 fields 

    string name="";
    for(int field=startField; field< fields.Length; field++){
        name+=((field==startField)?"":" ")+fields[field];
        //add aditional space for name split into multiple fields

    }
    if(sel[0]=='d'){//directory

        statusBar1.Text=string.Format("Changing directoy to {0} ..", name);
        lFtp.ChangeDir(name);
        drawDirectoryContents();//redraw contents after changing directory

    }else{
        if(sel[0]=='-'){//plain file has '-' as first character

            txtFileName.Text=name;//update the name of file to download

            txtFileName.Visible=true;
            btnDownload.Visible=true;
        }
    }
}

Changing to Parent Directory

The ChangeDirUp() would do that.

    private void btnCdParent_Click(object sender, System.EventArgs e) {
    statusBar1.Text="Changing to Parent Directory ..";
    lFtp.ChangeDirUp();
    drawDirectoryContents();
}

Downloading Files

Once file is prepared to download by double clicking it from the list box, as explained above; the "DOWNLOAD" button would invoke the Get() method. This would get the file into the current working directory. To make the demo short, I didn't give buttons to save it in a different location.

private void btnDownload_Click(object sender, System.EventArgs e) {
    statusBar1.Text=string.Format("Downloading {0} into {1}..", 
        txtFileName.Text, Environment.CurrentDirectory);
    btnDownload.Visible=txtFileName.Visible=false;
    lFtp.Get(txtFileName.Text, txtFileName.Text, true, false);
    statusBar1.Text=string.Format("Downloading of {0} into {1} is complete", 
       txtFileName.Text, Environment.CurrentDirectory);
}

Directory Content Display

The list box is cleared first of previous contents. List() function gets them in StringCollection ls, which is used to add items into list box.

private void drawDirectoryContents(){
    statusBar1.Text="Listing directory contents ..";
    lstDirectory.Items.Clear();
    StringCollection ls=new StringCollection();
    try{lFtp.List(ls, "", true);}catch(Exception ex){
        statusBar1.Text=ex.Message;
        return;
    }
    foreach(string file in ls){
        lstDirectory.Items.Add(file);
    }
    txtDirectory.Text=lFtp.RetrieveCurrentDir();
    btnCdParent.Visible=(txtDirectory.Text=="/")?false:true;
    txtFileName.Visible=btnDownload.Visible=false;
    statusBar1.Text="Complete";
}

Form Closing

Before form is closed, the Disconnect() method is used to make sure FTP server gets the "BYE" command before form unloads.

private void Form1_Closed(object sender, System.EventArgs e) {
    lFtp.Disconnect();
}

Summary

The goal of this exercise was to leverage the .NET strengths; instead of trying to re-invent what is already available for free -- thoroughly tested and debugged (hopefully). The Indy library, according to their authors, supports 120 protocols! The .NET Framework integration allows seamless integration of these protocols to any managed application.

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

About the Author

Fakher Halim


Member

Occupation: Architect
Company: Task Performance Group
Location: United States United States

Other popular Internet / Network articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 26 (Total in Forum: 26) (Refresh)FirstPrevNext
Rantplease help me I didn't download Indy.Socket.dll PinmemberMember 42441192:52 21 Dec '08  
GeneralRe: please help me I didn't download Indy.Socket.dll [modified] PinmemberFakher Halim8:08 21 Dec '08  
QuestionDownload Indy.Sockets.dll URL shows 404 error Pinmemberanbarasans19:32 3 Dec '08  
AnswerRe: Download Indy.Sockets.dll URL shows 404 error [modified] PinmemberFakher Halim8:03 21 Dec '08  
GeneralA comfortable FTP class in .NET PinmemberElmue13:40 27 Aug '08  
GeneralRe: A comfortable FTP class in .NET PinmemberFakher Halim13:42 27 Aug '08  
GeneralRe: A comfortable FTP class in .NET PinmemberElmue8:41 2 Sep '08  
GeneralRe: A comfortable FTP class in .NET PinmemberFakher Halim8:53 2 Sep '08  
Generalupload file into remote server in c#winform Pinmembernanio21:35 31 Jan '08  
Generalits very very urgent Pinmembersantu_kumar2:27 20 Sep '07  
GeneralWho wants the working fix PinmemberDR Delphi4:29 2 Mar '07  
GeneralRe: Who wants the working fix Pinmembernanio22:00 31 Jan '08  
GeneralI don't find Indy.Sockets.dll with FTP Pinmember_anagram_3:33 2 Jun '06  
GeneralRe: I don't find Indy.Sockets.dll with FTP Pinmemberanagram0:55 3 Jun '06  
GeneralRe: I don't find Indy.Sockets.dll with FTP PinmemberDR Delphi4:31 2 Mar '07  
GeneralI have problem with FTP client in C#: Pinmemberbeyzaa5:51 17 Apr '06  
GeneralC#. Error "not connected" in FTP client Pinmemberbigman_pl8:07 17 Oct '05  
GeneralRe: C#. Error "not connected" in FTP client PinmemberJ. Peter Mugaas6:55 21 Oct '05  
GeneralRe: C#. Error "not connected" in FTP client Pinmemberbigman_pl22:30 23 Oct '05  
GeneralHi Pinmembersantosh poojari22:24 15 Sep '05  
GeneralAnother free, open-source .NET FTP component PinsussHans Andersen12:57 11 Nov '04  
GeneralIndy website not cooperating PinmemberPaolo del Mundo9:10 28 Sep '04  
GeneralRe: Indy website not cooperating PinmemberFakher Halim11:22 28 Sep '04  
GeneralIndy 10 .NET has been released PinmemberFakher Halim18:25 4 May '04  
GeneralRe: Indy 10 .NET has been released Pinmembervenu babu23:49 31 Jan '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

PermaLink | Privacy | Terms of Use
Last Updated: 22 Apr 2004
Editor: Smitha Vijayan
Copyright 2004 by Fakher Halim
Everything else Copyright © CodeProject, 1999-2010
Web18 | Advertise on the Code Project