Problem with get all files's attribute in current (wodSFTP / wodSFTP.NET / wodSFTPdll)
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:
- Problem with get all files's attribute in current - mininoz, 2008-01-09, 05:08
- Re: Problem with get all files's attribute in c - woddrazen, 2008-01-09, 09:07