I'm reading filenames from file system and I want to send them as JSON encoded array. The problem is that files on file system can be stored in invalid encoding, and I need to handle this situation to omit invalid filenames before passing it to json.dump, otherwise it will fail.

Is there a way to check that my string (filename) contains valid utf-8 chars?

link|improve this question
2  
Shock me. Why would the files not have valid UTF-8 filenames? – Ignacio Vazquez-Abrams Mar 10 '11 at 11:43
it's the file name that is not encoded in utf-8 or is it the data in the file ?? i m confused. – mouad Mar 10 '11 at 11:45
2  
How about buggy software that creates filenames based on ID3 tags without checking the encoding? Or mounting (with the wrong options) an old filesystem that uses an odd character encoding for filenames? – Mark Longair Mar 10 '11 at 11:47
Invalid encoding can be big problem when moving data from old (non utf-8) systems (like WinXP with non-US/EN locale) and especially files in .zip and .rar archives files created on these systems – troex Mar 10 '11 at 12:48
feedback

1 Answer

up vote 6 down vote accepted

How about trying the following?

valid_utf8 = True
try:
    filename.decode('utf-8')
except UnicodeDecodeError:
    valid_utf8 = False

... based on an answer to a similar question here: How to write a check in python to see if file is valid UTF-8?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.