When using \[code\]mkdir()\[/code\] with the recursive flag set to true do all the created directories get the specified chmod or just the last one? For example:\[code\]mkdir('/doesnotExist1/doesnotExist2/doesnotExist3/', 0755, true);\[/code\]Will the newly created directories \[code\]/doesnotExist1/\[/code\] and \[code\]/doesnotExist1/doesnotExist2/\[/code\] also get the same chmod as \[code\]/doesnotExist1/doesnotExist2/doesnotExist3/\[/code\] = 0755?If not, is there any way to force the above behavior?I would test this myself, but I don't have access to a *nix box ATM.