FTP over SSL client

  • Thread starter Thread starter Striped
  • Start date Start date
S

Striped

Hello,

what will be a good start to create such a client under .NET?
Is .NET a good fit for such a task or I should use some lower level
languages like C/C++?

thanks,
Striped.
 
It really depends on how strong your background in sockets is. There are a
few examples of using FTP via C#, but since there really isn't any support
for it within the .Net framework, it is usually done with low-level socket
communications.

Having said that, I don't think it would be that much more difficult to do
it over SSL than it would be non-encypted.

For my own uses, I finally just found a freeware ftp library and used it,
rather than to re-invent the wheel.
 
Back
Top