1

I want to create an FTP client in C# and Visual Studio 2010. Can you please suggest me some good links to start ? I want to use latest version of C# so I am looking for latest code samples for help so that I can get benefit of already made code.

Thanks.

DotnetSparrow
  • 27,428
  • 62
  • 183
  • 316

3 Answers3

6

1) FtpWebRequest and FtpWebResponse .Net classes.

http://msdn.microsoft.com/en-us/library/ms229718.aspx

2) Many other libraries : Free FTP Library

Community
  • 1
  • 1
Priyank
  • 10,503
  • 2
  • 27
  • 25
3

You can try this http://netftp.codeplex.com/. This library has been last updated as of today as Aug. 5 2013.

Vijay
  • 31
  • 1
1

http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx

I think this is what you're looking for, I think it would give you a neat head start!

Venki
  • 1,419
  • 5
  • 28
  • 38