Show remote server files and folders in Places through an add-on

I have an add-on which connects to a remote server using koRemoteConnectionService. I get the server info from koRCS.getServerInfoList and uses koRCS.getConnection2 for connecting action. So the function returns koRemoteConnection object (which is valid of course, I can execute all of the commands for this interface). What function I should use to show files and directories in Places from the current connection (I store it in a variable) and what arguments I should pass to this function?

I think this is what you want:

ie. ko.places.manager.openNamedRemoteDirectory(uri)

1 Like

Thanks, I’ll try that!