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

DonKnacki

I finally understand that it is a command to do directly in WinSCP command
so very easy to add it:
"C:\Program Files (x86)\WinSCP\WinSCP.com" /command ^
    "open ftps://****@****  -explicit -certificate="***" -rawsettings MaxTlsVersion=12" ^
    "option batch continue" ^
    "cd /ftpdir" ^
    "put C:\DATA" ^
    "close" ^
    "exit"
DonKnacki

WinSCP.com use option batch continue

I have an error while transfering some files (even by using WinSCP GUI)
Copying files to remote side failed.
Failure reading network stream.

However file is well transferred! But it stops the other transfer. So I would like to skip such error.

I found that I should use option batch continue but I don't understand how?

Here my bat file script:
"C:\Program Files (x86)\WinSCP\WinSCP.com" /command ^
    "open ftps://****@****  -explicit -certificate="***" -rawsettings MaxTlsVersion=12" ^
    "cd /ftpdir" ^
    "put C:\DATA" ^
    "close" ^
    "exit"

C:\DATA is a folder with some files that I want to transfer to my FTP.
How can I add option batch continue?