sftp Download max. 100 files?
Posted: Thu 27 Aug 2015 09:10
It seems that the TScSFTPClient component can download only 100 files:
After calling ReadDirectory the OnDirectoryList event is fired not more than 100 times. In my case I expect rather 4000 times.
Is there a chance to increase it?
I am still using SecureBridge version 6.0.
Code: Select all
...
Ftp->OnDirectoryList = MyOnDirectoryList;;
TScSFTPFileHandle Handle = Ftp->OpenDirectory(FtpPath);
if(!Ftp->EOF)
{
Ftp->ReadDirectory(Handle);
Ftp->CloseHandle(Handle);
}
...
Is there a chance to increase it?
I am still using SecureBridge version 6.0.