Quantcast
Channel: Total Commander
Viewing all articles
Browse latest Browse all 4158

Total Commander (English) • Re: search for folders that contain 3 or more files with the same extension

$
0
0
Do you have Everything 1.5 installed and configured to work with Total Commander?

In that case, search for

Code:

ed:  child:*.flac  child-occurrence-count:>2
It will list all folders below the active folder that contain 3 or more .flac files.

(can't test it atm, but should work)



[..]PowerShell[..]
Alternative:

Code:

gci -Directory -Recurse | Where { $_.GetFiles('*.flac').Count -gt 2 } | select FullName

Statistics: Posted by NotNull — 2024-07-21, 19:53 UTC



Viewing all articles
Browse latest Browse all 4158

Trending Articles