In <[EMAIL PROTECTED]>, Jean-Paul
Calderone wrote:

>>How would you propose listdir should behave?
> 
> Umm, just a wild guess, but how about raising an exception which includes
> the name of the file which could not be decoded?

Suppose you have a directory with just some files having a name that can't
be decoded with the file system encoding.  So `listdir()` fails at this
point and raises an exception.  How would you get the names then? Even the
ones that *can* be decoded?  This doesn't look very nice:

path = u'some path'
try:
    files = os.listdir(path)
except UnicodeError, e:
    files = os.listdir(path.encode(sys.getfilesystemencoding()))
    # Decode and filter the list "manually" here.

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to