New extended DIR function (XDir) is available.
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
This release fixes a bug in Passive Mode.
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.
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.
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.
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
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.