Page 1 of 1

sftp

Posted: Sat Jul 12, 2025 12:31 pm
by photoevents
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

Re: sftp

Posted: Sat Jul 12, 2025 2:41 pm
by Oleg
I don't find the functionality that allows to check if files have been downloaded and already exist on the local folder.
Maybe SFTP Synchronization will solve your problem.
From remote folder to local
I think I better keep SFTP logged on rather then login logout every ten seconds.
Task closes all connections that are open in the task
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.

Re: sftp

Posted: Sun Jul 13, 2025 11:34 am
by photoevents
Thank you