Is it possible to use File.Copy to copy a file to a FTP server?
This is what I had in mind:
try
{
File.Copy(@"C:/test.txt", @"myFTP URL");
MessageBox.Show("Copy Successfull.");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}