Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add secure FTP capabilities to a .NET application

I'm rewriting an in-house client-server application as a .NET MVC application. It needs to send and receive files via secure FTP. The original application was client-server and used MOVEit Freely to do SFTP. Is there a library or product I can use to do it from within .NET?

like image 939
gfrizzle Avatar asked Mar 30 '09 20:03

gfrizzle


2 Answers

http://www.enterprisedt.com/products/edtftpnet/overview.html

like image 191
Dave Swersky Avatar answered Sep 30 '22 18:09

Dave Swersky


Just use the built-in FtpWebRequest and FtpWebResponse classes.

like image 39
Alex Fort Avatar answered Sep 30 '22 17:09

Alex Fort