Xceed FTP Library Documentation
Sending files (C# example)
Example topics > Sending files (C# example)
C# Copy Code

// The following example demonstrates how to connect to a
// FTP server and upload a file.

XceedFtpLib.XceedFtp ftp = new XceedFtpLib.XceedFtpClass();

ftp.License( @"your license key" );

// Specify the FTP server's address
ftp.ServerAddress = @"ftp.cdrom.com";

// Specify the username and password to login
ftp.UserName = "anonymous";
ftp.Password = "guest";

try
{
   // Connect to the FTP server
   ftp.Connect();

   // Send a file
   ftp.SendFile( @"c:\test\uploads.txt", 0, "uploads.txt", false );

   // Disconnect from the FTP server
   ftp.Disconnect();
}
catch( System.Runtime.InteropServices.COMException except )
{
   MessageBox.Show( except.ToString() );
}