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
//Downloads all directories, subdirectories and files in the selected Directory asynchronously from FTP
System.Console.WriteLine("We are downloading the TestDir folder.This is a non-blocking call");
// All these calls do the same thing
ftp.DownloadDirectory("C:\\Download", "TestDir");
/* ftp.DownloadDirectory("C:\\Download", "TestDir", true, "*.*");
ftp.DownloadDirectory("C:\\Download", "TestDir", true, new Regex(".+"));
ftp.DownloadDirectory("C:\\Download", "TestDir", true, DateTime.MinValue, DateTime.MaxValue);
ftp.DownloadDirectory("C:\\Download", "TestDir", true, 0, Int64.MaxValue);
*/
System.Console.WriteLine("{0} files have been Transferred", ftp.FileCount);