Xceed .NET Libraries Documentation
How to display the content of a file on an FTP server

Welcome to Xceed .NET, .NET Standard and Xamarin Libraries! > Basic Concepts > FTP capabilities > FTP using the FileSystem interface > How to display the content of a file on an FTP server

The content of a file located on an FTP server (or to any other type of file supported by the Xceed FileSystem) can be displayed using the OpenRead method. 

The following example demonstrates how to display the content of a file located on an FTP server using the steps listed below:

  1. Create an instance of the FtpConnection class to establish a connection between the client and the FTP server. If you are using FtpConnection in a UI application, assign your form (or any other control that implements the ISynchronizeInvoke interface) to the SynchronizingObject property and call Application.DoEvents in an event such as ByteProgression.

  2. Create an instance of an FtpFile which will represent the file on the FTP server whose content is to be displayed. By default, the file is assumed to be located in the current working folder. 

  3. Retrieve a stream to the file on the FTP server using the FtpFile's OpenRead method specifying the RepresentationType with which the data will be retrieved. The stream returned by the OpenRead method is not seekable. 

  4. Since the stream returned by the OpenRead method is not seekable (meaning that neither the length or position can be retrieved), data can be read by either looping through the stream until the end of the stream has been reached, or a StreamReader can be created around the stream to read the data.

    Because the stream was opened using the Ascii RepresentationType, we will encode the data with the same encoding. 

  5. Dispose of the stream using its Dispose method. 

  6. Dispose of the FtpConnection once the file transfer is completed by calling its Dispose method or, in C#, by creating the FtpConnection instance in a using block. If an instance of an FtpConnection object is not disposed of, connections with the FTP server may remain active until the FTP server times-out or the garbage-collector passes.

VB.NET Copy Code

Imports Xceed.FileSystem
Imports Xceed.Ftp

Dim connection As FtpConnection
Dim stream As System.IO.Stream

Try
  connection = New FtpConnection( "ftp.server.com" )
  'When using FtpConnection in a UI application 
  connection.SynchronizingObject = Me

  Dim file As New FtpFile(connection, "test.txt")
  stream = file.OpenRead( RepresentationType.Ascii )

  Dim reader As New System.IO.StreamReader(stream, System.Text.Encoding.ASCII)
  System.Diagnostics.Debug.WriteLine( reader.ReadToEnd() )

Finally
  stream.Close()
  connection.Dispose()
End Try

C# Copy Code
 
using Xceed.FileSystem;
using Xceed.Ftp;
 
using( FtpConnection connection = new FtpConnection( "ftp.server.com" ) )
{        
  //When using FtpConnection in a UI application
  connection.SynchronizingObject = this;

  FtpFile file = new FtpFile( connection, "test.txt" );
 
  using( System.IO.Stream stream = file.OpenRead( RepresentationType.Ascii ) )
  {
    System.IO.StreamReader reader = new System.IO.StreamReader( stream, System.Text.Encoding.ASCII );
    System.Diagnostics.Debug.WriteLine( reader.ReadToEnd() );
  }
}

Things to consider