How to List Filenames Containing Non-ASCII Characters

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
raywood
Posts: 22
Joined: Fri Apr 29, 2011 7:42 pm

How to List Filenames Containing Non-ASCII Characters

Post by raywood »

A previous thread (viewtopic.php?t=10380) (sorry, not sure how to use URL tags here) seems to say I can get a list of filenames using regex:[^\x00-\x7f]. I think I was previously having success with this command in Windows:

Code: Select all

everything -search D: regex:[^\x00-\x7f]
But now, when I run that, I get this:
Unable to open file list: regex:[\x00-x7f] is not a valid file list.
I recently updated Everything. Did it change, or is there something wrong with my command?
TIA.
void
Developer
Posts: 15443
Joined: Fri Oct 16, 2009 11:31 pm

Re: How to List Filenames Containing Non-ASCII Characters

Post by void »

Please try the following call:

Code: Select all

everything -search "D: regex:[^\x00-\x7f]"
Use double quotes to escape the space.
raywood
Posts: 22
Joined: Fri Apr 29, 2011 7:42 pm

Re: How to List Filenames Containing Non-ASCII Characters

Post by raywood »

Bingo! That worked. Thank you!
raccoon
Posts: 1017
Joined: Thu Oct 18, 2018 1:24 am

Re: How to List Filenames Containing Non-ASCII Characters

Post by raccoon »

Change x00 to x20 if you want to discover filenames containing ascii control codes. Change x7f to x7e to discover the backspace ctrl code.
Post Reply