FTP software, how to?

  • Thread starter Thread starter Jassim Rahma
  • Start date Start date
J

Jassim Rahma

i want to develop an FTP software just like the commercial ftp software
available, e.g. cuteFTP, wsFTP, etc...

and I want to know where to start from?
 
Hi,
Jassim Rahma said:
i want to develop an FTP software just like the commercial ftp software
available, e.g. cuteFTP, wsFTP, etc...

and I want to know where to start from?

Take a look at FtpWebRequest class, it will be the core of your app.
Alternately there are other third party classes that implement the ftp
protocol.

Secondly stop by codeproject.com or sourceforge.net and see if there are
other free FTP clients there, you might get ideas from those projects.
 
Jassim said:
i want to develop an FTP software just like the commercial ftp software
available, e.g. cuteFTP, wsFTP, etc...

and I want to know where to start from?

..NET Framework has classes for both FTP and GUI, so
I would say that you just start creating the app you want,
because all the pieces are there.

Arne
 
Back
Top