Printable ASCII characters which are allowed in filenames range from the space through the tilde. To find, say, all filenames in "C:\Program Files" which contain non-ASCII characters:
(Technically, DEL is also allowed in filenames. But no one in his right mind would ever do that, right?)
Code:
ffind /a /s "c:\Program Files\*[! -~]*"
(Technically, DEL is also allowed in filenames. But no one in his right mind would ever do that, right?)





