MD or MKDIR
(from Make Directory)
Creates a directory.
MKDIR [drive:]path
MD [drive:]path
Where:
[drive:]path
- Specifies the path of the directory to create.
Intermediate directories along the path, if they do not exist, will be created as needed.
Example: Create the directory there
in the path C:\applecore\but go
(which can also be created):
mkdir "C:\applecore\but go\there"
or:
md "C:\applecore\but go\there"
Comments