I am trying to create a ftp server in c#.
This server should listen to any ftp requests, and if a file is sent from a remote location, then the server should write it to a specific folder.
I am using VS2008. Do I need a tcp listener? FtpWebRequest? FtpWebResponse?
I am trying to create a ftp server in c#. This server should listen
Share
I believe a TcpListener would be easiest to work with
There’s an old article on it here that should still be usefull: codeguru