I already split in two scripts the transfer to ftp servers. Thanks for your reply.
Use full path to a log file.
Hi,
I'm trying to use a script that copy a csv files to an ftp server then move the same files to other ftp server.
Main problem is that log file generated by winscp.com command contain only info about first connection and about second connection log file (with the same name) is located in lcd command path.
How can I solve this issue (having one log file for both connections)?
Thanks.
Ex(batch file)
@echo off
path=c:\;c:\windows;c:\windows\system32;C:\Program Files\WinSCP
IF EXIST daily_d.log DEL daily_d.log
winscp.com /console /script=taskD.txt /log=daily_d.log
Ex (script tasD.txt)
# Automatically abort script on errors
option batch continue
# Disable overwrite confirmations that conflict with the previous
option confirm off
open x
lcd c:\prognoza\outgoing
put *.csv /prognoza_nou/
open y
lcd c:\prognoza\outgoing
put -delete *.csv /
# Disconnect
close
# Exit WinSCP
exit