min yun law created SSHD-1106:
---------------------------------

             Summary: SCP failed for target filename with space inside
                 Key: SSHD-1106
                 URL: https://issues.apache.org/jira/browse/SSHD-1106
             Project: MINA SSHD
          Issue Type: Bug
    Affects Versions: 2.5.1
            Reporter: min yun law


when using ScpClient.upload() and download() API and give the remote file name 
with space inside, it will throw exception as:
java.io.EOFException: readAck - EOF before ACK

 

Here is sample of code:



String localDir = "/scratch/downloads/";
 String fileName = "p201300_Linux-x86-64 (1).zip";
 String remotePath = "/tmp";

File localPathFile = new File(localDir, fileName);
 Path pathFile = localPathFile.toPath();

//remote is linux 

String remoteFullPath = remotePath+"/"+fileName;

Collection<ScpClient.Option> options = EnumSet.noneOf(
 ScpClient.Option.class);

scpClient.upload(pathFile,remoteFullPath,option); //it will throw exception 

 

 

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to