+1 vote

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!

by (260 points)
retagged by

1 Answer

+1 vote

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.

by (297k points)
Ok, Thank you!
...