You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to write a java routine that will monitor a folder on a remote sftp server and if it finds one or more files with a nominated file extension then download them to a local folder and remove the remote file once it's been downloaded. I have Googled for examples but can't find one which illustrates the commands I need to use.
I did find this snippet of code
@Override public void download(String source, LocalDestFile dest) throws IOException { final PathComponents pathComponents = engine.getPathHelper().getComponents(source); final FileAttributes attributes = engine.stat(source); new Downloader().download(getTransferListener(), new RemoteResourceInfo(pathComponents, attributes), dest); }
However, it's not clear where "engine" is created - I really could do with a fully working example
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am trying to write a java routine that will monitor a folder on a remote sftp server and if it finds one or more files with a nominated file extension then download them to a local folder and remove the remote file once it's been downloaded. I have Googled for examples but can't find one which illustrates the commands I need to use.
I did find this snippet of code
@Override public void download(String source, LocalDestFile dest) throws IOException { final PathComponents pathComponents = engine.getPathHelper().getComponents(source); final FileAttributes attributes = engine.stat(source); new Downloader().download(getTransferListener(), new RemoteResourceInfo(pathComponents, attributes), dest); }
However, it's not clear where "engine" is created - I really could do with a fully working example
Any help would be most appreciated.
Dave
Beta Was this translation helpful? Give feedback.
All reactions