I am using the Xceed Library 1.1. component in C# .Net 2003. The GetFolderContents works perfect when the files on the FTP folder is less then 200. When the files accumlated up to 300 or above, it will generate an error of "The remote file could not be opened by the FTP server."
Here is my two lines of codes
XceedFtpLib.XceedFtp ftpServer = new XceedFtpLib.XceedFtpClass();
object folderItems = ftpServer.GetFolderContents( "*.*.done", XceedFtpLib.EXFContentsFormat.fcfCollection );
Is it a bug of the component or what is wrong here?
many thanks
Casper