I have directories test1-test10 in a remote FTP server. Using WinSCP scripting, I want to retrieve every file under these directories.
This shows all directories:
ls test*
I want to retrieve all the files inside these directories:
get test*/*
However I get an error saying no such file or directory.
How can I accomplish this?
/test*/*. – drum Aug 17 '15 at 17:17