Enclode filename in quotes for SCP operation as recomended

This commit is contained in:
olegkap_cp
2012-06-18 13:21:54 +00:00
parent 82df302b47
commit 72df8fad29
@@ -45,7 +45,8 @@ namespace Renci.SshNet
channel.Open();
// Send channel command request
channel.SendExecRequest(string.Format("scp -qt {0}", filename));
channel.SendExecRequest(string.Format("scp -qt \"{0}\"", filename));
this.CheckReturnCode(input);
this.InternalUpload(channel, input, fileInfo, filename);
@@ -82,7 +83,7 @@ namespace Renci.SshNet
channel.Open();
// Send channel command request
channel.SendExecRequest(string.Format("scp -qrt {0}", filename));
channel.SendExecRequest(string.Format("scp -qrt \"{0}\"", filename));
this.CheckReturnCode(input);
this.InternalUpload(channel, input, directoryInfo, filename);
@@ -156,7 +157,7 @@ namespace Renci.SshNet
channel.Open();
// Send channel command request
channel.SendExecRequest(string.Format("scp -qprf {0}", directoryName));
channel.SendExecRequest(string.Format("scp -qprf \"{0}\"", directoryName));
this.SendConfirmation(channel); // Send reply
this.InternalDownload(channel, input, directoryInfo);