Re: Stream File With FTP
Your code makes no sense. First, the
Second, the returned stream is at the beginning. There's no need to seek it.
Session.GetFile
does not return MemoryStream
. It returns a custom implementation of the Stream
interface. And it indeed does not implement a writable Position
property.
Second, the returned stream is at the beginning. There's no need to seek it.