I'm writing a script to check permissions of files in user's directories and if they're not acceptable I'll be warning them, but I want to check permissions of not just the logged in user, but also group and others. How can i do this? It seems to me that .access() in Python can only check the permissions for the user running the script.
|
You're right that os.access, like the underlying access syscall, checks for a specific user (real rather than effective IDs, to help out with suid situations). os.stat is the right way to get more general info about a file, including permissions per user, group, and others. The To help interpret those bits, you may want to use the stat module. Specifically, you'll want the bitmasks defined here, and you'll use the
Take care: the |
|||
|
|
You can check file permissions via |
||||
|
|
|
Use Edit: Check out this related question if you are testing directory permissions on Windows. |
|||||
|