Hello,
My company use the FTP.DLL module to download files from FTP. I can download list of files to IO target, but I would like to download the files to List(Of MemoryStream) or List(Of Byte())
This is possible?
Thank you!
You can download single file to Stream using Ftp.Download(string remotePath, Stream destination) method.
It is not possible for list of files.
You can use Ftp.Search method and download each file to Stream separately.