Quantcast
Channel: sshnet Discussions Rss Feed
Viewing all articles
Browse latest Browse all 1729

New Post: Client Upload Completes but Never Returns

$
0
0
Hi, came across this library, looks like a life saver. Got it working pretty quickly and uploading files over SFTP (all I need to do at this time).

The following code is my simple implementation:
        public static string UploadSftp(string tempFilename, string host, string path, string username, string password)
        {
            using(SftpClient client = new SftpClient(host, username, password))
            using (FileStream stream = new FileStream(tempFilename, FileMode.Open, FileAccess.Read))
            {
                client.Connect();
                client.UploadFile(stream, path, Test);
                client.Disconnect();
            }

            File.Delete(tempFilename);

            return string.Empty;
        }
        public static void Test(ulong result)
        {
            Debug.WriteLine(result);
        }
This uploads the file file and I get the progress reported correctly via the test callback. However client.Disconnect() never gets hit. I know I am missing something dead simple here, something Async - can anyone spot my schoolboy error?

Viewing all articles
Browse latest Browse all 1729

Trending Articles