Start Search
HomeProductsIndividual ProductsFTP/SSL, SFTP Component
 Product Link
 Products
 NetXtremeFtp Component
Download FREE Trial Version
  • Easily add comprehensive FTP and SFTP file transfer capabilities to any .NET application

  • Component Version: 1.9

  • Royalty FREE

  • .NET Version: 2.x and 3.x

  • Source Code: Included in Gold License

NetXtremeFtp .NET component offers a number of classes that make the work of transferring files directly from your application using FTP/SSL (an extension of FTP which is fast becoming a standard for secure FTP) and SFTP (a powerful and secure file-transfer protocol that runs over an SSH session) more easily. The FtpClient and SftpClient classes provide a number of convenience asynchronous methods and events that allow you to quickly create applications which can handle file transfers simultaneously. The library also offers the flexibility, ease of use and rapid development features of a component without the complexities of working with the native socket class or in-depth knowledge of how the File Transfer Protocols are implemented.

NetXtremeFtp is also included in the following suites which are bundles that include many additional components:

Major Features (Click on tab to see detailed features):

  • All the standard FTP file and directory operations (upload, download, rename, resume, abort,...).

  • Supports FTP, FTP/SSL.

  • Supports MODEZ, MODEB.

  • All SSH and SFTP server support.

  • Firewall and Proxy support.

  • SSL2, SSL3, PCT and TLS support.

  • X509 Certificate Management support.

  • Large file support (>4GB).

  • Supports IPv6.

  • 100% managed code written in C#.

  • Fully documented and 32 Sample projects written in C#, VB.NET and ASP.NET.

Sample Usage - Upload and download file easily with few lines of code:

C# Sample
VB.NET Sample
// Create a new FtpClient instance.
FtpClient client = new FtpClient();

// Connect to the FTP server.
client.Connect("ftp.mydomain.com");

// Authenticate.
client.Login("username", "password");

// Upload file "c:\test.zip".
client.UploadFile("c:\\test.zip", "test.zip");

// Download remote file "test.zip".
client.GetFile("test.zip", "c:\\test_download.zip");

// Disconnect.
client.Disconnect();

More samples:

  • Click on tab to see more samples.

Copyright © 2008 Safabyte Co.,Ltd. All rights reserved.