I think I have it working now. Thanks for your help!
- Toadmyster
C:\Program Files (x86)\WinSCP>winscp.com /command
winscp>
:Loop
winscp.com /script=script.txt
timeout 10
goto :Loop
:Loop
winscp.com /command ^
"open sftp://user:password@webiste" ^
"synchronize remote filemask=|>15N ""C:\Users\ME\Desktop\folder\"" ""/home/website/public_html/folder/""" ^
"exit"
timeout 10
goto :Loop
:Loop
winscp.com /script=script.txt ^
"option batch abort" ^
"open <session>" ^
"synchronize remote <local directory> <remote directory>" ^
"exit"
timeout 10
goto :Loop
open sftp://user:password@webiste
synchronize remote filemask=|>15N "C:\Users\ME\Desktop\folder\" "/home/website/public_html/folder/"
exit
synchronize
command and run it from a Windows Scheduler (or in a batch file in a loop) every few minutes. Plus use -filemask=|>15N
switch to exclude too new files.