I have a flask application that creates directory with this code:
if not os.path.exists(target_path):
os.makedirs(target_path)
With the created directory the default permission is 0755
, and the owner and group is _www
.
So, only the owner can write in the directory.
I always have to modify the permission manually to 0775
to make some files in it.
How to make the default directory permission as 0775
? I use apache for web server.