Name attribute not found (wodSFTP / wodSFTP.NET / wodSFTPdll)
Limey,
I tried to do
Sftp1.ListAttributes("/");
and had this code inside:
[code]void sftp1_AttributesDataEvent(object Sender, WeOnlyDo.Client.SFTP.AttributesArgs[] Args)
{
foreach (WeOnlyDo.Client.SFTP.AttributesArgs arg in Args)
{
Console.WriteLine(arg.Name);
}
}
[/code]
it worked correctly for me. No compile errors, no errors during execution. Can you try the same?
Kreso