Re: Blocking and ListDir or ListNames (General questions)
I requested the new version which is version 1.1.0.26. If i use my sftp client i can see all the files i am looking for. If i get the files and look at the remote files, it skips the last one.
[code]
static void FtpLoopItemsEvent(object sender, FtpLoopArgs args)
{
if (args.RemoteFile.EndsWith( .txt ))
{
Console.WriteLine(args.RemoteFile);
}
}
[/code]