i was reading here:
http://laravel-recipes.com/recipes/147/creating-a-directory
$result = File::makeDirectory('/path/to/directory', 0775, true, true);
this works
whereas 775 does not work as expected. What is there that I do not understand about the difference between 775 and 0775?
via Toskan