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?
Your both supposed options are not true. Result permissions will not be neither exact
777
nor "inherited" from parent directory.To understand what will happen, you need to understand two points:
umask()
mkdir()
second parameter is not just "exact permissions". umask will modify it. So end result may (and, best chances are - will be) differ from777
.Also there's important to realize - that Windows permissions systems is different from *nix - you can not rely on described above when working under Win systems.