SFTP sftp = new SFTP(); //Trial Mode
//SFTP sftp = new SFTP("place user name here", "place license key here");
// set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com"; // replace with your SFTP server
sftp.UserName = "anonymous"; // replace with your user name
sftp.Password = "user@mail.com"; // replace with your password
//Download an entire directory, subdirectories,
// and files synchronously using FTP
System.Console.WriteLine("We are downloading the TestDir folder.This is a blocking call");
sftp.DownloadDirectory("C:\\Download", "TestDir");
System.Console.WriteLine("{0} files have been Transferred", sftp.FileCount);