Reputation: 285
How does one change file access permissions?
f = open('test','w') f.close()
Defaults access permissions: 10600
Upvotes: 5
Views: 15055
Reputation: 678
You can use os.chmod
os.chmod(path, mode)
You probably want to use an octal integer literal, like 0777 for the mode.
Upvotes: 20
Reputation: 16624
Use os.chmod(path, mode)