Ya that cost $299.95. I found a way to do it for free though. You can use http://winscp.net/eng/inde
Main Topics
Browse All TopicsIs there a .NET class for SFTP (secure file transfer protocol)? I want to use vb.net to make a sftp conncetion but I cant find any information on it. Any suggestions?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Ya that cost $299.95. I found a way to do it for free though. You can use http://winscp.net/eng/inde
.NET Framework does not include SFTP support. You have to try a third party component. There is at least one free (called tamirgal) and a few commercial. Following code is taken from samples of Rebex SFTP for .NET (http://www.rebex.net/sftp
https://www.rebex.net/sftp
'create client, connect and log in
Dim client As New SFtp
client.Connect("sftp.examp
client.Login("username", "password")
' upload the 'test.zip' file to the current directory at the server
client.PutFile("c:\data\te
' upload the 'index.html' file to the specified directory at the server
client.PutFile("c:\data\in
' download the 'test.zip' file from the current directory at the server
client.GetFile("test.zip",
' download the 'index.html' file from the specified directory at the server
client.GetFile("/wwwroot/i
' upload a text using a MemoryStream
Dim message As String = "Hello from Rebex SFTP for .NET!"
Dim data As Byte() = System.Text.Encoding.Defau
Dim ms As New System.IO.MemoryStream(dat
client.PutFile(ms, "message.txt")
Just for further details, there's a guide with VB.Net example for using WinSCP:
http://winscp.net/eng/docs
Business Accounts
Answer for Membership
by: emoreauPosted on 2006-02-14 at 17:31:42ID: 15956888
i use http://www.xceedsoft.com/p roducts/Ft pLib/index .aspx