08-24-2018 10:21 AM
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?
11-08-2018 04:44 AM
This Glob pattern worked for me
*[!{.pdf,.tmp}]
Can you try this?
11-08-2018 01:20 PM
That worked like a charm. Thank you!