Page 1 of 1

Search for all extensionless files?

Posted: Fri Aug 17, 2018 12:19 am
by JTCGiants56
Is this possible?

Re: Search for all extensionless files?

Posted: Fri Aug 17, 2018 2:01 am
by therube
ext:

(Actually, what that does is to find files without "dots".
A file name like, "zlib_1.2_dll" is not "extensionless".
The "extension" is "2_dll", so is not found.)

(There is something else, but off the top of my head, I'm not remembering.)


(Oh, & searching for ext:, sorted by size, very quickly found me two files that should of had an extension but did not.)

Re: Search for all extensionless files?

Posted: Fri Aug 17, 2018 3:37 am
by JTCGiants56
Thanks!

No worries, the "ext:" found the files I was looking for.

Re: Search for all extensionless files?

Posted: Fri Aug 17, 2018 4:49 am
by void
Another way is to search for:
!.

! = NOT

Re: Search for all extensionless files?

Posted: Sat Aug 18, 2018 3:06 am
by JTCGiants56
Thanks.

Not sure if I should open a different thread but had a different question. How do I search for videos with "!" exclamation points? When I put in an exclamation point in the search it clears everything out.

Re: Search for all extensionless files?

Posted: Sat Aug 18, 2018 5:50 am
by void
Use double quotes to escape !
"!"

! only means NOT when it is the first character.

Re: Search for all extensionless files?

Posted: Sat Aug 18, 2018 6:03 am
by JTCGiants56
Thank you

Re: Search for all extensionless files?

Posted: Sun Feb 04, 2024 11:24 am
by Thy Grand Voidinesss
void wrote: Fri Aug 17, 2018 4:49 am Another way is to search for:
!.

! = NOT
To be precise and to not have to be forced to use also a Filter that would remove folders from the list of shown items: in order to find extensionless files user has to look for

Code: Select all

file:!.
right?

Re: Search for all extensionless files?

Posted: Sun Feb 04, 2024 11:48 am
by void
Correct.