Hello,
I try to download 4 files for a path. I get "Connection closed; transfer aborted" when I try to download one of the files (267KB).
Any suggestions?
My code looks like this
Limilabs.FTP.Log.Enabled = true;
using (Ftp client = new Ftp())
{
client.Connect(file.Ftp_ip);
client.Login(file.Ftp_dw_user, file.Ftp_dw_password);
byte[] bytes;
try
{
bytes = client.Download(file.File_name);
streamFichero = new MemoryStream(bytes);
}
catch (FtpException ex)
{
....
}
The other files (smallers) download successfully.
If I tried to download only this file I get the same error.