I am using the following command to transfer from a SFTP location to a local folder. This transfers all the files from the SFTP location to the local folder.
How do I transfer files that are only for e.g. older than yesterday?
cmd /c c:/putty/pscp -q -batch -pw password -i C:/putty/key_pk.ppk -r root@xx.xxx.xxx.xxx:/home/user/Folder1/* C:/LocalFolder1/SFTP/
Thanks.