|  | @@ -36,7 +36,7 @@ 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);
 | 
	
	
		
			
				|  | @@ -120,7 +120,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);
 |