Post a reply

Before posting, please read how to report bug or request support effectively.

Bug reports without an attached log file are usually useless.

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

Bpepsi

Thank you

Hi Martin,

Thank you for your help !!!!

Barbara
martin

Re: Wildcards don't work in WinSCP script

WinSCP does not support wildcards with path. You need to do:
cd /home/oracle/incoming/
get *.dat d:\outgoing\
Bpepsi

Wildcards don't work in WinSCP script

Hi,

I have the problem that the wildcard '*' does not work in my script. When I enter the concrete name of a file it works fine. But when I enter *.dat it returns with error. :/

Do you have any ideas?

Cheers,
Barbara

option batch on
option confirm off
option transfer automatic
get /home/oracle/incoming/*.dat d:\outgoing\
close
exit