my script doesn't append the log files anymore, instead it overrides them
Need help with this, I have winscp 5.7.5 and my script doesn't append the logs anymore, in the Winscp settings at tools/reference/logging/ the enable session box is checked and in the Log to file box i entered:
the script goes like this:
By reading the put and append command documentation the line of the logs should goes like this but still doesn't append them.
Thanks
"C:\LOGS JOURNALS\logsdelScript_!Y_!M_!D.log"
Below the append option is checked
the script goes like this:
@echo off winSCP.com /command ^ "option batch abort" ^ "open ftp://user:password@192.168.x.xx/" ^ "synchronize local C:\Sabcc\JOURNAL /Journals/TRuSVAL -filemask=*>"2016-09-20 " "close" ^ "quit" ^ /log= "C:\LOGS_JOURNALS\logsfromScript_!Y_!M_!D_!T.log" /loglevel=1 "quit"
By reading the put and append command documentation the line of the logs should goes like this but still doesn't append them.
put -append /log= "C:\LOGS_JOURNALS\logsfromScript_!Y_!M_!D_!T.log" /loglevel=1
Thanks