Linux creates directories: mkdir (make directories)
Function description: Create directories
Syntax: mkdir [-p ][--help][--version][-m
Supplementary explanation: mkdir can create a directory and set the permissions of the directory at the same time.
Parameters:
-m
-p or –parents If the upper-level directory of the directory to be created has not been created yet, the upper-level directory will be created together.
Example: mkdir test
Recommended related articles and tutorials: linux tutorial
The above is the detailed content of How to create a folder in linux. For more information, please follow other related articles on the PHP Chinese website!