How do i access a sftp server?

nelmen

New member
Joined
Nov 8, 2008
Messages
2
Programming Experience
1-3
How do i access a sftp server?
I want to upload and download file.
 
You have to search for a third party library or implement the protocol yourself with sockets and cryptography. .Net has not direct support for SFTP, only FTPS, probably because SSH is a Unix system while Windows only has TLS/SSL support by default.
 
Back
Top