clientDownload = new WebClient();
Stream stream = clientDownload.OpenWrite(new Uri(remoteUrl + "/aa/aa.txt"), "PUT");
byte[] buffer = ASCIIEncoding.Default.GetBytes("bb");
stream.Write(buffer, 0, buffer.Length);
stream.Close(); clientDownload = new WebClient(