Re: Get -neweronly not working
Trying to automate sftp transfer from remote server to only get newer items added to the folder since the last transfer but all files are still transferring.
cmds tested:
get -neweronly
Should be
get -neweronly *
, otherwise it won't even run.
get -neweronly="*>2H" /ServerLocation #to only download files added within last 2 hours
Should be
get -filemask="*>2H" /ServerLocation