Re: PutFile (myMemoryStream) (General questions)
Hi Hal,
Here is example how you can use memory stream inside wodSFTP.NET PutFile Method:
[code] Dim dataout As String
dataout = this is some text
Dim ms As System.IO.MemoryStream
ms = New System.IO.MemoryStream(System.Text.Encoding.ASCII.GetBytes(dataout))
sftp1.PutFile(ms, /home/test/testfile.txt )[/code]
Can you maybe try something like that and let us know how it goes?
Hope I helped.
Regards,
Drazen