Usage: makedirp [OPTION]... DIRECTORY... Create the DIRECTORY(ies), if they do not already exist. Options: -- Treat all subsequent arguments as DIRECTORY(ies) -h, --help display this help and exit -v, --version output version information and exit -m=MODE, --mode=MODE set file ...
mkdir NewFolder\Subfolder1\Subfolder2 /p ``` 这个命令将递归地创建嵌套目录结构。如果父目录尚不存在,它也会被自动创建。 在Linux和macOS系统中,可以使用"-p"参数以相同的方式实现。例如: ``` mkdir -p NewFolder/Subfolder1/Subfolder2 ``` 无论是在Windows还是在Linux和macOS系统中,makedir命令是一个...