3
2
With WinSCP 5.2 I wanted to put multiple files with a file extension .pgp
on an SFTP site. When I tested my original command line (see below) and it only placed the first *.pgp
alphabetical file (D:\a.csv.pgp
) on the SFTP site. I tried specifying *.PGP
and *.pgp
without any changes - only one file (D:\a.csv.pgp
) would be copied each time. I got it to work for all files only if I specified a put command for each .pgp
file. Any ideas on how to put all *.pgp
on the SFTP site?
Original Command Line - Does Not Work
d:\winscp\winscp /command "option echo off" "option batch on" "option confirm off" "open sftp" "put D:\*.pgp" "close" "exit"
Works
d:\winscp\winscp /command "option echo off" "option batch on" "option confirm off" "open sftp" "put D:\a.csv.pgp" "put D:\b.csv.pgp" "put D:\c.csv.pgp" "put D:\d.csv.pgp" "put D:\e.csv.pgp" "put D:\f.csv.pgp" "put D:\g.csv.pgp" "put D:\h.csv.pgp" "put D:\i.csv.pgp" "close" "exit"
As OP has only single parameter in his
put D:\*.pgp
command, it's not necessary to add the target directory as the last parameter. Moreover in your example, you use a Windows path as a target directory, what won't work (even if the server is Windows server, with SFTP, paths have to use forward slash as separators). – Martin Prikryl – 2014-06-12T15:20:48.797