Steve Holden wrote: > What, you are saying that > > os.path.exists(filename) > > is returning false when the file exists? I find that hard to believe. > > Please display some evidence so I can understand this.
Maybe it's about access rights? $ mkdir alpha $ touch alpha/beta $ python -c"import os; print os.path.exists('alpha/beta')" True $ chmod u-x alpha $ python -c"import os; print os.path.exists('alpha/beta')" False $ I Don't know how this is handled on Windows... Peter -- http://mail.python.org/mailman/listinfo/python-list