Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
583 views
in Technique[技术] by (71.8m points)

c# - Uploading a Azure blob directly to SFTP server without an intermediate file

I'm attempting to upload am Azure blob directly to an SFTP server.

It's simple to upload a file from a local location:

using (var sftp = new SftpClient(connectionInfo)){
    sftp.Connect();
    using (var uplfileStream = System.IO.File.OpenRead(fileName)){
        sftp.UploadFile(uplfileStream, fileName, true);
    }
    sftp.Disconnect();
}

Is there a way to copy blobs from blob storage directly to an SFTP server?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
  1. Either combine CloudBlob.OpenRead with SftpClient.UploadFile:

     using (var blobReadStream = blockBlob.OpenRead())
     {
         sftp.UploadFile(blobReadStream, remotePath, true);
     }
    
  2. Or combine SftpClient.Create with CloudBlob.DownloadToStream:

     using (var sftpWriteStream = sftp.Create(remotePath))
     {
         blockBlob.DownloadToStream(sftpWriteStream);
     }
    

The first approach should be a way faster in SFTP terms, as SftpClient.UploadFile is optimized, comparing to the SftpFileStream returned by SftpClient.Create.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...