Hello!
I am in the process of testing the sftp component. Works fine but I'm having a strange problem when downloading a file to a file stream.
sftpClient.DownloadFile(fileName, destinationFile); //string to string. This works fine
BUT
using (var stream = File.Open(destinationFile, System.IO.FileMode.Create,System.IO.FileAccess.Write, System.IO.FileShare.None))
{
sftpClient.DownloadFile(fileName, stream);
}
results in an exception "Object reference not set to an instance of an object.".
The stream is created fine but shows 0 b after the exception, of course. What am I doing wrong?
asked 3/2/2020 1:01:23 PM