You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mina.apache.org by "min yun law (Jira)" <ji...@apache.org> on 2020/11/30 19:31:01 UTC

[jira] [Created] (SSHD-1106) SCP failed for target filename with space inside

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: dev-unsubscribe@mina.apache.org
For additional commands, e-mail: dev-help@mina.apache.org