FTP ftp = new FTP(); //Trial Mode
//FTP ftp = new FTP("place user name here", "place license key here");
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
//Upload an entire directory, subdirectories, and files synchronously
System.Console.WriteLine("Transferring files from the Download folder to the TestDir FTP folder. This call is blocking");
ftp.UploadDirectory("C:\\Download", "TestDir");
System.Console.WriteLine("TestDir has now {0} KB", ftp.GetDirectorySize("TestDir") / 1024);