cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Exclude files in Directory Browser

Joy
New Contributor II

I would like to pull a list of files in a directory except the .zip and .lck files. In globtester.com the following works:
!*.{zip,lck}
However, it does not produce the same results when used as the File Filter option in the Directory Browser. Is there a different way to search all files except a given list?

2 REPLIES 2

rane_deepa_zycu
New Contributor

This Glob pattern worked for me
*[!{.pdf,.tmp}]

Can you try this?

Joy
New Contributor II

That worked like a charm. Thank you!