Search notes:

System.Net.FtpWebRequest

System.Net.FtpWebRequest derives from WebRequest (as also does System.Net.HttpWebRequest).

Shortcomings

S.N.FtpWebRequest has some shortcomings, for example, it cannot create or delete folders on the FTP server.
Therefore, Microsoft does not recommend to use FtpWebRequest for new development and refers to a this StackOverflow thread for alternatives.
The answer with the most upvotes considers FluentFTP (MIT licence) as an alternative.

Index