diff --git a/reference/filesystem/functions/mkdir.xml b/reference/filesystem/functions/mkdir.xml index c30ad9d292..b7bd4629b6 100644 --- a/reference/filesystem/functions/mkdir.xml +++ b/reference/filesystem/functions/mkdir.xml @@ -1,5 +1,5 @@ - + @@ -11,7 +11,7 @@ intmkdir stringpathname - intmode + [intmode] Attempts to create the directory specified by pathname. @@ -21,6 +21,13 @@ octal number, which means it should have a leading zero. The mode is also modified by the current umask, which you can change using umask. + + Mode is NOT needed on Windows. + + Please note also that mode is optional and that + it is by default '0777' (read, write and execution for EVERY + access). If you need more informations about mode under + UNIX systems, please read 'man 1 chmod' and 'man 2 chmod'.