Link to home
Start Free TrialLog in
Avatar of Michael Lam
Michael Lam

asked on

does .Net's FtpWebRequest class work on SFTP servers?

hi,

i am building a FTP adapter in .Net.  currently i am using FtpWebRequest because it supports FTPS natively.  however, i know that there are other types of FTP servers out there such as SFTP servers.  i need to build an adapter that will run in at least the majority of the FTP servers, therefore i need to account for SFTP servers as well (i am assumming they are the two main security standards).  does FtpWebRequest support SFTP servers?  if not, are there classes in .Net that will allow me to FTP files to SFTP servers securely?  thanks.  
ASKER CERTIFIED SOLUTION
Avatar of Arana (G.P.)
Arana (G.P.)

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Michael Lam
Michael Lam

ASKER

also, how do you detect the server type (e.g., SFTP or FTPS) in .Net?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thanks.