Skip to main content

Is it possible to search for multiple file extensions in the one directory and file pathnames reader simultaneously?

Path Filter:

* - returns all files

*.dgn - returns all dgn files

*.dgn,*.shp - returns 0 results

Can someone please help me with the correct syntax for multiple file extensions in Path Filter?

Try the following

*.{dgn,shp}

Make sure there are no spaces inside the braces.

Doc: http://docs.safe.com/fme/2018.1/html/FME_Desktop_Documentation/FME_ReadersWriters/path/PATH_reader.htm


Try the following

*.{dgn,shp}

Make sure there are no spaces inside the braces.

Doc: http://docs.safe.com/fme/2018.1/html/FME_Desktop_Documentation/FME_ReadersWriters/path/PATH_reader.htm

Excellent @david_r

 


Try the following

*.{dgn,shp}

Make sure there are no spaces inside the braces.

Doc: http://docs.safe.com/fme/2018.1/html/FME_Desktop_Documentation/FME_ReadersWriters/path/PATH_reader.htm

Great to see an answer 3 days before I had the same question :-)

 

 


Try the following

*.{dgn,shp}

Make sure there are no spaces inside the braces.

Doc: http://docs.safe.com/fme/2018.1/html/FME_Desktop_Documentation/FME_ReadersWriters/path/PATH_reader.htm

Thanks very much, that worked like a charm!

 

 


Try the following

*.{dgn,shp}

Make sure there are no spaces inside the braces.

Doc: http://docs.safe.com/fme/2018.1/html/FME_Desktop_Documentation/FME_ReadersWriters/path/PATH_reader.htm

Thanks @david_r. Saved my precious time, as I didn't go through your document properly. 


Try the following

*.{dgn,shp}

Make sure there are no spaces inside the braces.

Doc: http://docs.safe.com/fme/2018.1/html/FME_Desktop_Documentation/FME_ReadersWriters/path/PATH_reader.htm

Just used this, thanks David for the tip.


Reply