Author yi_ding
Recipients
Date 2006-06-27.22:01:02
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Platform: Python 2.5b1 Windows XP

Bug:
os.access will report that a user doesn't have write
permissions to a file or directory when the user
actually does.

Reproducibility: always

This is being run on an administrator account.
>>> import os
>>> os.access("C:\\", os.W_OK)
False
>>> os.access("C:\\test.txt", os.W_OK)
False

I have also checked that Python can indeed write to the
file.
History
Date User Action Args
2007-08-23 14:40:53adminlinkissue1513646 messages
2007-08-23 14:40:53admincreate