FtpWebRequest Alternative for Windows Universal and Windows Store Apps
If you are here because:
System.Net.FtpWebRequest
is not available in Windows Store and Windows Universal apps.Windows.Networking.BackgroundTransfer.BackgroundUploader
does not support FTP uploads.
Take a look at the FtpClient GitHub project, a FTP uploader made with sockets.
To do a FTP upload, use the following C# snippet:
Read more here.