Go to the first, previous, next, last section, table of contents.

mkdir

`mkdir(FILENAME,MODE)'
FILENAME で指定されるディレクトリを作成する。 permissionMODE(umask で修飾される)で指定する。 成功すれば 1 を返し、失敗すれば 0 を返すと共に $! をセットする(errno)。

Go to the first, previous, next, last section, table of contents.