Hi!
What would be the filter to exclude all files with no name and with an extension ._xxxxx ?
And to filter out *.!ut files too.
Thanks !
Filter to exclute ._image01 > ._image10 files
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: Filter to exclute ._image01 > ._image10 files
What would be the filter to exclude all files with no name and with an extension ._xxxxx ?
Code: Select all
wfn:._xxxxxAnd to filter out *.!ut files too.
Code: Select all
!*.!uiPutting the two together:
Code: Select all
wfn:._xxxxx !*.!ui