Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

viorelrosu

I already split in two scripts the transfer to ftp servers. Thanks for your reply.
martin

Re: copy and remove files to two ftp servers

Use full path to a log file.
viorelrosu

copy and remove files to two ftp servers

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