FtpDLX.NET throws an error at GetAttributes() from TitanFTP (wodFtpDLX / wodFtpDLX.NET)
Hmm... that's strange.
We have a simple FtpDLXWrapper which calls the ftpDlx.ListNames(folder); (we don't have a problem with it) and the exception occurs at the next stage - on the first call of method GetAttributes().
Here is a piece of C# code (a bit simplified) from our wrapper:
using WeOnlyDo.Client;
internal class FtpDLXWrapper
{
FtpDLX ftpDlx = new FtpDLX();
public FtpDLXWrapper()
{
//..
}
public void GetAttributes(string file)
{
ftpDlx.GetAttributes(fileUrl);
var size = this.fileSize;
var modificationTime = this.fileModificationTime;
}
}
Please try it on you test environment. If it works for you as well, then could you share here the part of code that gets the attributes ?
May be we miss some detail.
Best regards,
Vadym.
Complete thread:
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Vadym, 2017-03-08, 12:59
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Jasmine, 2017-03-08, 13:05
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Vadym, 2017-03-08, 13:30
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Jasmine, 2017-03-08, 13:59
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Vadym, 2017-03-09, 09:04
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Jasmine, 2017-03-09, 11:37
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Vadym, 2017-03-09, 09:04
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Jasmine, 2017-03-08, 13:59
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Vadym, 2017-03-08, 13:30
- FtpDLX.NET throws an error at GetAttributes() from TitanFTP - Jasmine, 2017-03-08, 13:05