I tried to apply a filter to hide all files NOT .jpg
I used ~.jpg, but it didn't work. All files were hidden..
What am I doing wrong?
I tried to apply a filter to hide all files NOT .jpg
I used ~.jpg, but it didn't work. All files were hidden..
What am I doing wrong?
Enclose *.jpg in parenthesis and it should work.
~(*.jpg)
It's ~(*.jpg)
~.jpg means (~).jpg which matches nothing at all.
[quote="leo"]It's ~(*.jpg)
~.jpg means (~).jpg which matches nothing at all.[/quote]
Thanks, I originally tried it but it didn't work.
I just realized that it is correct, but I also need to turn off "Partial Match" otherwise the jpgs will still shows.
what is the format for multiple filetype exclusion, ~(.jpg,.tmp) ?
Use the pipe character to separate multiple exclusions, for example, to hide multiple image types you could do something like this:
~(*.(bmp|cr2|dng|gif|jpg|jpeg))