|
MKDIR or MD
Creates directories(folders).
Syntax
MKDIR [drive:]path
Drive : : Specifies the drive on which you want to create
the new directory.
Path : Specifies the name and location of the new
directory. The path can consist of any valid
characters up to the maximum path length available.
When you enable command extensions, you can use a single
mkdir command to create intermediate directories in a
specified path.
The maximum length of a full pathname under NTFS or FAT is
260 characters.
Examples
To create a directory named Sales with a subdirectory named
2009, which contains a subdirectory named May, type:
MKDIR \Sales\2009\May
Make several folders with one command
C:\temp> MKDIR June July August
will create
C:\temp\June\
C:\temp\July\
C:\temp\August\
Cmd Commands
|