vote up 2 vote down star

I have a project already written using .Net's WebClient class. It works great for FTP and WebDAV resources, but how can I get it to work with SCP or SFTP?

flag

76% accept rate

1 Answer

vote up 1 vote down

The .Net framework contains no built-in SCP support; try SharpSSH.

The FtpWebRequest class supports FTPES by setting the EnableSsl property, but WebClient doesn't expose it, so you'll have to use FtpWebRequest directly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.