in src/main/java/com/pastdev/jsch/nio/file/UnixSshSftpHybridFileSystem.java [50:59]
public UnixSshPath getPath( String first, String... more ) {
if ( more == null || more.length == 0 ) return new UnixSshPath( this, first );
StringBuilder builder = new StringBuilder( first );
for ( String part : more ) {
builder.append( PATH_SEPARATOR )
.append( part );
}
return new UnixSshPath( this, builder.toString() );
}