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
//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");
sftp.UploadDirectory("C:\\Download", "TestDir");
System.Console.WriteLine("TestDir has now {0} KB", sftp.GetDirectorySize("TestDir") / 1024);