Skip to main content

Create a directory from the command-line in Windows. This command is the same as the 'md' command.

:: To create a directory:
mkdir <directory_name>

:: To recursively create a nested directory tree:
mkdir <path/to/sub_directory_name>