I'm trying to download a file using the Tamir SSH library. I'm able to connect to the remote FTP site, upload files to the site, but I'm getting exceptions when trying to download. I've given IIS_IUSRS full control of the local directory as well as ASPNET. I've tested an I'm able to create a text file in the same local directory I'm trying to download to. Any ideas?\[code\]string SFTP_HOST = ConfigurationManager.AppSettings["AccentivFtpHost"];string SFTP_USERNAME = ConfigurationManager.AppSettings["AccentivFtpUsername"];string SFTP_PASSWORD = ConfigurationManager.AppSettings["AccentivFtpPassword"];Sftp client = new Sftp(SFTP_HOST, SFTP_USERNAME, SFTP_PASSWORD);client.Connect(22);client.Get("test.txt", "c:\\test.txt");\[/code\]