Windows – Find files with non-ASCII characters in filenames in Windows XP

file searchfilesystemsunicodewindows xp

Is there any easy way to find all files in a particular directory that have any non-ASCII (ie. Unicode) characters in the filename? I'm running Windows XP x64 SP2, NTFS filesystem.

Best Answer

Here's a method using Powershell:

gci -recurse . | where {$_.Name -cmatch "[^\u0000-\u007F]"}
Related Question