1

I would like to access a file through SFTP using .NET. I have seen other questions on Stack Overflow regarding this, such as SFTP question, but these are rather old and things would have moved on since then. My question is, does .NET support SFTP now (it didn't back when this question was asked). If it doesn't, is there any good Open Source SFTP library that I can use?

Thanks,

Sachin

Community
  • 1
  • 1
Sachin Kainth
  • 45,256
  • 81
  • 201
  • 304
  • Take a look at this: http://stackoverflow.com/questions/10899324/upload-download-files-from-ftp-site-using-sftp otherwise it looks like your only other solution is to implement it yourself. – Security Hound Aug 07 '12 at 12:54
  • SFTP for .Net examples can be found at http://sftpcomponent.net/ – Peter Jan 07 '15 at 06:36

1 Answers1

1

No, .NET doesn't support SFTP. Your best bet for open source is SharpSSH.

Our own commercial .NET SFTP library, edtFTPnet/PRO, is built on an open source SSH library, Granados, which could be another alternative.

Bruce Blackshaw
  • 986
  • 1
  • 7
  • 10