I have a directory that is writable.If i make another directory inside it using
mkdir("test", 0777);
Does this make test directory writable ?
if i use only
mkdir("test");
does it inherit the writable property from its parent dir?
If not is there a way to make it inherit. So that i do not have to individually make it writable?