Perl Programming/Keywords/mkdir
< Perl Programming | Keywords
The mkdir keywordEdit
mkdir creates a new directory with the name specified by FILENAME with the given MASK for permissions. Without MASK, the value 0777 is taken. Trailing slashed are removed from FILENAME.
mkdir returns true on success and false otherwise. It also and sets $! (errno).
If the operating system supports fchdir(2), a DIRHANDLE or FILEHANDLE can also be used. If this is not the case, an exception is raised.
SyntaxEdit
mkdir FILENAME, MASK
mkdir FILENAME
mkdir
ExamplesEdit
mkdir DataDir\abcweb
chdir |
closedir |
mkdir |
opendir |
readdir |
rewinddir |
rmdir |
seekdir |
telldir
|