does sdk support pic: and path: ?

Plug-in and third party software discussion.
Post Reply
kfcjunjun
Posts: 5
Joined: Fri Mar 04, 2022 9:03 am

does sdk support pic: and path: ?

Post by kfcjunjun »

hi there .
when I search in everything.exe winform , the software search grammar support pic:and path:

but when I use everything dll , It dont work .
$myCom ->Everything_SetSearch("regex:K199[^a-z0-9]*.* path:360 pic:");
my purpose is to search the result :
satisfy the regular expression:regex:K199[^a-z0-9]*.*
under the path 360
type : picture

when search in exe , it work well .
Image
void
Developer
Posts: 15349
Joined: Fri Oct 16, 2009 11:31 pm

Re: does sdk support pic: and path: ?

Post by void »

The SDK does not support access to filter macros.
(The next major version will)

Please try the following SDK call:

Code: Select all

$myCom ->Everything_SetSearch("regex:K199[^a-z0-9]*.* path:360 ext:ani;apng;bmp;bpg;cur;gif;ico;jfi;jfif;jif;jpe;jpeg;jpg;pcx;png;psb;psd;rle;svg;tga;tif;tiff;webp;wmf");
kfcjunjun
Posts: 5
Joined: Fri Mar 04, 2022 9:03 am

Re: does sdk support pic: and path: ?

Post by kfcjunjun »

thank you
lin-ycv
Posts: 8
Joined: Fri Mar 11, 2022 2:25 am

Re: does sdk support pic: and path: ?

Post by lin-ycv »

void wrote: Sat Mar 05, 2022 11:15 pm The SDK does not support access to filter macros.
(The next major version will)
Is there a rough timeline of when the next major version will be?
I'm deciding whether it's worth my time to develop a filtering method for my plugin, or wait for the next version.
void
Developer
Posts: 15349
Joined: Fri Oct 16, 2009 11:31 pm

Re: does sdk support pic: and path: ?

Post by void »

I do not have a release date yet sorry.

I recommend using your own filters for the most control.

Here are the default filters for Everything 1.5:

Audio:

Code: Select all

ext:aac;ac3;aif;aifc;aiff;amr;ape;au;cda;dts;fla;flac;it;m1a;m2a;m3u;m4a;m4b;m4p;mid;midi;mka;mod;mp2;mp3;mpa;ogg;opus;ra;rmi;spc;rmi;snd;umx;voc;wav;weba;wma;xm
Compressed:

Code: Select all

ext:7z;ace;arj;bz2;cab;gz;gzip;jar;r00;r01;r02;r03;r04;r05;r06;r07;r08;r09;r10;r11;r12;r13;r14;r15;r16;r17;r18;r19;r20;r21;r22;r23;r24;r25;r26;r27;r28;r29;rar;tar;tgz;z;zip
Document:

Code: Select all

ext:c;cc;chm;cpp;cs;css;csv;cxx;doc;docm;docx;dot;dotm;dotx;epub;h;hpp;htm;html;hxx;ini;java;js;json;lua;mht;mhtml;mobi;odp;ods;odt;pdf;php;potx;potm;ppam;ppsm;ppsx;pps;ppt;pptm;pptx;pub;py;rtf;sldm;sldx;thmx;txt;vsd;wpd;wps;wri;xlam;xls;xlsb;xlsm;xlsx;xltm;xltx;xml;vb
Executable:

Code: Select all

ext:bat;cmd;exe;msi;msp;msu;ps1;scr
Folder:

Code: Select all

folder:
Picture:

Code: Select all

ext:ani;apng;bmp;bpg;cur;gif;ico;jfi;jfif;jif;jpe;jpeg;jpg;pcx;png;psb;psd;rle;svg;tga;tif;tiff;webp;wmf
Video:

Code: Select all

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;mp2v;mp4;mp4v;mpe;mpeg;mpg;mpls;mpv2;mpv4;mov;mts;ogm;ogv;pss;pva;qt;ram;ratdvd;rm;rmm;rmvb;roq;rpm;smil;smk;swf;tp;tpr;ts;vob;vp6;webm;wm;wmp;wmv
Post Reply