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
ftp.OverwriteFiles = false; //The default is true
ftp.OverwriteReadOnlyFiles = false; //The default is false
ftp.SynchronizeDownload("C:\\Download", "TestDir");
//if a.txt exists on both folders and if its the same file, there will be no need to
// transfer it
// When synchronizing, or when not overwriting files,
// this is the current number of files that didn't need to be transferred
System.Console.WriteLine("The FTP component did not have to transfer {0} files", ftp.SkippedFiles);