Currently I'm doing the functionality for sftp using jsch-0.1.44. I need to add option for the user to browse the directory. So how to get the list of files from the remote server. Is there any other open source exists for this functionality ? Please help me
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The ChannelSftp class provides the necessary methods to browse a remote directory. For listing the directory, use |
|||
|
|
|
This example from jsch examples list shows one way to do this. Look at the code starting from the following line...
|
|||
|
|
|
You can use Apache Virtual File System. If you are creating GUI application you can use OtrosVfsBrowser or VFSJFileChooser. |
|||
|
|