How can I copy file in list to another folder on ftp server before I download?
Is this possible?
Dim ftp As SecureFTPConnection
Dim items() As String
Dim file As String
items = ftp.GetFiles         
                    
For Each file In items
   'would like to copy file to an archive folder on ftp server first but don't see a method to do this.                 
 ftp.DownloadFile(ftpPath & file, ftp.ServerDirectory) 
Next file