Any suggestions would be appreciated! I'm using FME Desktop 2013 SP1.
Steve
Any suggestions would be appreciated! I'm using FME Desktop 2013 SP1.
Steve
I think it's impossible to use such a regular expression in the reader settings. But we can set comma-separated two or more paths in the "Dataset" text box of a reader, so you can use the following expression instead: C:\\SomeDir\\*11.ffs,C:\\SomeDir\\*83.ffs To get this expression, you can edit "Dataset" text box directly, or do: 1) Click c+] button of the "Add Reader" dialog box to open advanced browser. 2) Add two "C:\\SomeDir" rows. 3) Change "File/Filter" column values to "*11.ffs" and "*83.ffs". 4) Click cOK] to close the browser. Takashi
""C:\\SomeDir\\*11.ffs" "C:\\SomeDir\\*83.ffs""
consider doing the wildcard matching in your python script and then returning the complete list of files to process, without any wildcards.
You can use the module glob to do this quite easily.
David