Problem with get all files's attribute in current - WeOnlyDo Discussion board

Problem with get all files's attribute in current (wodSFTP / wodSFTP.NET / wodSFTPdll)

by mininoz, Wednesday, January 09, 2008, 05:08 (5961 days ago)

I would like to get all files's attribute in current folder and subfolder but I could not get it.

From the code below, Attributes event will be called only one time. I have no idea why.

Here is how i do (C#)
-----------------------------------------------
void sftp_LoopItem(ref string LocalFile, ref string RemoteFile, wodFtpDLXComLib.DirItemTypes ItemType, ref bool Skip)
{
sftp.GetAttributes(RemoteFile, false);
}

void sftp_Attributes(int Size, int Uid, int Gid, int Permissions, DateTime AccessTime, DateTime ModificationTime)
{
Console.WriteLine( ModificationTime + ModificationTime +
);
}


Complete thread: