Saved Bookmarks
| 1. |
How do you create a new directory in Perl? Mention the syntax of the function. |
|
Answer» For CREATING a new directory in PERL, we can use the function 'MKDIR'. PROGRAMMERS need to take the required permission for creating a directory. The syntax for the function is: mkdir(directoryName) or DIE; |
|