Re: SFTP PUT wild card xml files
You have to use two
Another option is to use
Session.PutFiles
calls, one for "rabbit*.xml"
and one "bunny*.xml"
, if that's what you ask for.
Another option is to use
TransferOptions.FileMask
with "rabbit*.xml; bunny*.xml"
, which would allow you to use one call only.