Menu

.NET FTP Client / News: Recent posts

FTP Client library for .NET 1.3.3 released

New extended DIR function (XDir) is available.

Posted by Jean-Jacques Boudart 2004-10-26

FTP Client library for .NET 1.3.2 released

Minor release with bug fixes.

The Dir method does not crash when there it returns no files.
Bug fixed on GetStream and SendStream methods.

GetStream sample code:

FTPConnection ftp = new FTPConnection();
ftp.Open("192.168.4.67", "anonymous", "", FTPMode.Active);

MemoryStream stream = new MemoryStream();
ftp.GetStream("downloadme.txt", stream, FTPFileTransferType.ASCII);
stream.Seek(0, SeekOrigin.Begin);
StreamReader reader = new StreamReader(stream);... read more

Posted by Jean-Jacques Boudart 2004-06-08

FTP Client library for .NET 1.3.1 released

This release fixes a bug in Passive Mode.

Posted by Jean-Jacques Boudart 2004-05-19

FTP Client library for .NET 1.3.0 released

Two new functions to rename and move files on the remote server.

Better stability by improving the mechanism of synchronisation between the client request and the server response.

Posted by Jean-Jacques Boudart 2004-05-04

FTP Client library for .NET 1.2.1 released

This is a minor release.

Modifications:
1. "localhost" and "127.0.0.1" names can be used to identify the local remote server.

2. The code is compliant with MS naming standards.

Posted by Jean-Jacques Boudart 2004-04-13

Release 1.2.1 coming soon

Dear all,

I'm working on the 1.2.1 release. It is a minor release with a bug fix and a modification of the code to be comliant with MS naming conventions.

Bug fixes:
- bug 854919

If you have other propositions for this release feel free to propose them.

Posted by Jean-Jacques Boudart 2004-03-30

FTP Client library for .NET 1.2 released

DotNetFTPClient is a library written in C# dedicated to the MS .NET developers who needs to access FTP servers.

It is very easy to use and supports all the standard FTP operations in passive or active and synchronous or asynchronous modes. Further more, this library allows to upload and download files as well as Streams.

You can download the latest version here:
https://sourceforge.net/project/showfiles.php?group_id=92889&release_id=198921

Posted by Jean-Jacques Boudart 2003-11-21

FTP Client library for .NET 1.1 released

DotNetFTPClient is a library written in C# dedicated to the MS .NET developpers who needs to access FTP servers.
It is very easy to use and supports all the standard FTP operations in passive or active and synchronous or asynchronous modes.

Posted by Jean-Jacques Boudart 2003-11-05