Hello,
I'm using sftp to download (or synchronise) images from remote to local
I don't find the functionality that allows to check if files have been downloaded and already exist on the local folder.
So, what I need, is checking remote for new files and only download new files, like every 10 seconds.
Also, I think I better keep SFTP logged on rather then login logout every ten seconds.
Christian
sftp
Re: sftp
Maybe SFTP Synchronization will solve your problem.I don't find the functionality that allows to check if files have been downloaded and already exist on the local folder.
From remote folder to local
Task closes all connections that are open in the taskI think I better keep SFTP logged on rather then login logout every ten seconds.
You could make some sort of constantly running task, but that is very bad idea. The task should start, do its job quickly, and finish.
Oleg Yershov
-
- Posts: 53
- Joined: Mon Jan 01, 2024 11:21 am
- Contact:
Re: sftp
Thank you