使用WinSCP .NET程序集将远程文件内容作为流访问

时间:2015-10-08 11:22:16

标签: c# winscp winscp-net azure-blob-storage

我正在尝试打开文件以使用WinSCP .NET程序集从SFTP读取文件,以便将文件从SFTP归档到Azure blob。

要将Blob上传到Azure,我正在使用

using (var fileStream = inputStream)
{
    blockBlob.UploadFromStream(fileStream);
    blobUri = blockBlob.Uri.ToString();
}

如何从SFTP服务器上的文件中获取流?

我使用SftpClient管理使用以下代码获取流,但它很有效,但遗憾的是无法使用WinSCP .NET程序集实现相同的功能。

sftpClient.OpenRead(file.FullName)

任何人都可以帮我解决如何使用WinSCP .NET程序集实现相同的目标吗?

因为我需要使用用户名,密码和私钥来连接SFTP,所以我使用的是WinSCP .NET程序集。

由于

1 个答案:

答案 0 :(得分:3)

WinSCP .NET程序集Session API无法使用流提供下载文件的内容。

所以你要做的就是使用Session.GetFiles将远程文件下载到本地临时位置并从那里读取文件:

// 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);
}