I am new to WinSCP and PowerShell.
I am trying to look for files in a directory that has the pattern "ABC"+somenumbers+YYYYMMDD+somenumbers.zip
$dt = (Get-Date).ToString('yyyyMMdd')
$transferOptions.FileMask = ("ABC*>=" "+$dt+".zip")
I am not able to get any files downloaded to local directory. Is my file mask correct?
Thanks
MR