c# – 使用WinSCP .NET程序集将远程文件内容作为流访问
作者:互联网
我正在尝试使用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程序集.
谢谢
解决方法:
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);
}
标签:c,winscp,azure-blob-storage,winscp-net 来源: https://codeday.me/bug/20190628/1314715.html