eels wrote: > Hello, > how can I check whether a directory is readable or not. Are there > differences between unix and windows?
As far as I know there aren't any differences, code: import os if access("/root", os.R_OK): print "You are able to read the /root dir" -- http://mail.python.org/mailman/listinfo/python-list