Having lots of folders with my photos, i have about the same amount of folders called 'original', with the unprocessed images. But a few of them would contain video files in different video formats. So i'd like to find all files inside those folders, which are not *.jpg, which should give me a list of video files. I tried
folder:Original ext:!*.jpg
which obviously is wrong. As an example for similar searches, what would the correct syntax be? It would be enough to get a list of folders that do match this search.
How to filter for folders with specific content?
Re: How to filter for folders with specific content?
folder: matches folders only.
path: = match full path and name.
!ext:*.jpg = match files that don't have a .jpg extension (also matches folders)
file: = match files only.
-or-
\ = match path and name. (same as path:)
file: path:Original !ext:*.jpg
path: = match full path and name.
!ext:*.jpg = match files that don't have a .jpg extension (also matches folders)
file: = match files only.
-or-
file: \Original\ !ext:*.jpg
\ = match path and name. (same as path:)
Re: How to filter for folders with specific content?
Thanks, it works, nice!
But i couldn't use the format !ext:*.(jpg|gpx|orf|ori|mp3|rtf|etc) to compactify the list. Not a big deal, but if it's possible, it would be more elegant, because i have maybe
But i couldn't use the format !ext:*.(jpg|gpx|orf|ori|mp3|rtf|etc) to compactify the list. Not a big deal, but if it's possible, it would be more elegant, because i have maybe
Re: How to filter for folders with specific content?
If you're actually only after the video: files, you could use video: instead of the !ext:jpg;gpx;orf;ori;mp3;rtf.
Re: How to filter for folders with specific content?
Hmm, that didn't work. I guess, ii had the wrong syntax, like
video:*.mov;*.mp4 \Original\ path:K:\ size:>50mb
However, this works.
ext:*.mov;*.mp4 \Original\ path:K:\ size:>50mb
Re: How to filter for folders with specific content?
Please try:
video: expands to:
These extensions can be customized under Search -> Organize Filters -> Video -> Search
video: \Original\ path:K:\ size:>50mb
video: expands to:
ext:3g2;3gp;3gp2;3gpp;amv;asf;asx;avi;bdmv;bik;d2v;divx;drc;dsa;dsm;dss;dsv;evo;f4v;flc;fli;flic;flv;hdmov;ifo;ivf;m1v;m2p;m2t;m2ts;m2v;m4v;mkv;mod;mov;mp2v;mp4;mp4v;mpe;mpeg;mpg;mpls;mpv2;mpv4;mts;ogm;ogv;ogx;pss;pva;qt;ram;ratdvd;rm;rmm;rmvb;roq;rpm;smil;smk;swf;tod;tp;tpr;ts;tts;uvu;vob;vp6;webm;wm;wmp;wmv;wmx;wvx
Re: How to filter for folders with specific content?
Ok, it's clear now. I had it a bit differently, thanks guys.void wrote: ↑Sat Dec 21, 2024 5:52 am Please try:
video: \Original\ path:K:\ size:>50mb
video: expands to:These extensions can be customized under Search -> Organize Filters -> Video -> Searchext:3g2;3gp;3gp2;3gpp;amv;asf;asx;avi;bdmv;bik;d2v;divx;drc;dsa;dsm;dss;dsv;evo;f4v;flc;fli;flic;flv;hdmov;ifo;ivf;m1v;m2p;m2t;m2ts;m2v;m4v;mkv;mod;mov;mp2v;mp4;mp4v;mpe;mpeg;mpg;mpls;mpv2;mpv4;mts;ogm;ogv;ogx;pss;pva;qt;ram;ratdvd;rm;rmm;rmvb;roq;rpm;smil;smk;swf;tod;tp;tpr;ts;tts;uvu;vob;vp6;webm;wm;wmp;wmv;wmx;wvx