I am trying to open file to read from SFTP using WinSCP .NET assembly as par to my exercise to archive file from SFTP to Azure blob.
To upload a blob to Azure, I am using
using (var fileStream = inputStream)
{
blockBlob.UploadFromStream(fileStream);
blobUri = blockBlob.Uri.ToString();
}
How to get the stream from the file on SFTP server?
I managed using SftpClient
to get the stream using the following code and it works but unfortunately not able to achieve the same using WinSCP .NET assembly.
sftpClient.OpenRead(file.FullName)
Can anyone help me how to achieve the same using WinSCP .NET assembly?
Because I need to connect to SFTP using username, password and privatekey I am using WinSCP .NET assembly.
Thanks
The WinSCP .NET assembly Session
API cannot not provide the contents of downloaded file using streams.
So all you can do, is to download the remote file to a local temporary location using the Session.GetFiles
and read the file from there:
// Generate unique file name for the temporary file
string tempPath = Path.GetTempFileName();
// Download the remote file to the temporary location
session.GetFiles("/path/file.ext", tempPath).Check();
try
{
// Open the temporarily downloaded file for reading
using (Stream stream = File.OpenRead(tempPath))
{
// use the stream
blockBlob.UploadFromStream(fileStream);
blobUri = blockBlob.Uri.ToString();
}
}
finally
{
// Discard the temporarily downloaded file
File.Delete(tempPath);
}
来源:https://stackoverflow.com/questions/33014313/access-remote-file-contents-as-a-stream-using-winscp-net-assembly