hello everyone here ..
i want to search for folders with most "specific file type" count, say for example "text files" ..
my needs here is to find the folders that have the greatest number of text files ..
p.s. iam searching for files count not files size.
i searched the forum here for solution, but with no luck ..
is this possible?? and how can i achieve that ..
thank you ..
[help] search for folders with most "count" of text files ??
Re: [help] search for folders with most "count" of text files ??
Please try the following with Everything 1.5:
- In Everything 1.5, type in the following search:
ext:txt - From the File menu, click Export....
- Change Save as type to: EFU Everything File List
- Choose a filename and click Save.
- From the File menu, click Open File List....
- Select your file list you saved above and click Open.
- Search for the following:
folder: addcolumn:childfilecount sort:childfilecount - When you are finished with the results, please close your file list from File -> Close File List.
Re: [help] search for folders with most "count" of text files ??
void wrote: ↑Tue Dec 06, 2022 7:10 am Please try the following with Everything 1.5:
- In Everything 1.5, type in the following search:
ext:txt- From the File menu, click Export....
- Change Save as type to: EFU Everything File List
- Choose a filename and click Save.
- From the File menu, click Open File List....
- Select your file list you saved above and click Open.
- Search for the following:
folder: addcolumn:childfilecount sort:childfilecount- When you are finished with the results, please close your file list from File -> Close File List.
thanx void, i will try that ..
question, can i preform this search without creating "EFU Everything File List" just by combining the two search strings ??
as i will frequently do this search with different file types ??
code example..
ext:txt folder: addcolumn:childfilecount sort:childfilecount
or
*.txt folder: addcolumn:childfilecount sort:childfilecount
Re: [help] search for folders with most "count" of text files ??
maybe adding something like that in the future builds will help ..
a feature that means preform whats inside the [ ] as a sub-search to the main "current" search results
it's like search within results ..
a feature that means preform whats inside the [ ] as a sub-search to the main "current" search results
ext:txt [folder: addcolumn:childfilecount sort:childfilecount]
it's like search within results ..
Re: [help] search for folders with most "count" of text files ??
Currently, no.question, can i preform this search without creating "EFU Everything File List" just by combining the two search strings ??
as i will frequently do this search with different file types ??
I will consider a feature to perform this search without using file lists.a feature that means preform whats inside the [ ] as a sub-search to the main "current" search results
Thank you for the suggestion.
Re: [help] search for folders with most "count" of text files ??
Everything 1.5.0.1331a adds a Child Occurrence Count property.
With this version or later, please try the following search:
childfile:*.txt addcolumn:child-occurrence-count sort:child-occurrence-count
Use child: to specify what file/folder children to search.
Use childfile: to specify file children only.
Use childfolder: to specify folder children only.
Change *.txt to whatever you like.
For example:
childfile:*.jpg
regex:childfile:\.(jpg|png)$
This property is limited to entire index (not the current results)
child-occurrence-count:
With this version or later, please try the following search:
childfile:*.txt addcolumn:child-occurrence-count sort:child-occurrence-count
Use child: to specify what file/folder children to search.
Use childfile: to specify file children only.
Use childfolder: to specify folder children only.
Change *.txt to whatever you like.
For example:
childfile:*.jpg
regex:childfile:\.(jpg|png)$
This property is limited to entire index (not the current results)
child-occurrence-count:
Re: [help] search for folders with most "count" of text files ??
Everything 1.5.0.1332a will now update child-occurrence-count in real-time.