Using Wildcards in FileMask for File Transfers
I'm using VBScript to download some files that have the month and year as part of the filename.
e.g.
abc_Mar-2001.out.zip
abc_Jun-2001.out.zip
abc_Mar-2002.out.zip
I can successfully download all of the "March" files, using GetFiles and
TransferOptions.FileMast = "abc_Mar*.zip"
An earlier attempt using
TransferOptions.FileMast = "abc_Mar*.out.zip"
worked, but resulted in downloaded files with names:
abc_Mar-2001.out.out.zip
abc_Mar-2002.out.out.zip
Is there some guideline for the use of wildcards that I have overlooked?
Thanks!
e.g.
abc_Mar-2001.out.zip
abc_Jun-2001.out.zip
abc_Mar-2002.out.zip
I can successfully download all of the "March" files, using GetFiles and
TransferOptions.FileMast = "abc_Mar*.zip"
An earlier attempt using
TransferOptions.FileMast = "abc_Mar*.out.zip"
worked, but resulted in downloaded files with names:
abc_Mar-2001.out.out.zip
abc_Mar-2002.out.out.zip
Is there some guideline for the use of wildcards that I have overlooked?
Thanks!