I have an update on this. I have used ExFTPConnection to syncronize both ends succesfully, with a form containing FtpLocalFileList, FtpRemoteFileList, FtpSynchronizeView and FtpStatusBar controls. Once i have selected the right foldes on both ends, ths synch process execute perfectly:
Private Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button3.Click
        Dim Rules As New EnterpriseDT.Net.Ftp.FTPSyncRules
        Rules.DeleteIfSourceAbsent = True
        Rules.IgnoreDate = True
        Rules.IncludeSubdirectories = True
        Rules.Direction = EnterpriseDT.Net.Ftp.TransferDirection.DOWNLOAD
        Me.ExFTPConnection1.Synchronize(Rules)
End Sub
It seems to be working very well, but I wonder if this method is executed in asynchronized mode or not. It could be very helpfull too if you could provide me with a sample about how to use Synchronize method eficiently.
Thanks & regards,
Julio