"mkdir" Command Help Reference

Q

How to get "mkdir" command help reference?

✍: FYIcenter.com

A

You can run the "mkdir /?" command to get "mkdir" command help reference as shown below:

C:\fyicenter>mkdir /?

Creates a directory.

MKDIR [drive:]path
MD [drive:]path

If Command Extensions are enabled MKDIR changes as follows:

MKDIR creates any intermediate directories in the path, if needed.
For example, assume \a does not exist then:

    mkdir \a\b\c\d

is the same as:

    mkdir \a
    chdir \a
    mkdir b
    chdir b
    mkdir c
    chdir c
    mkdir d

which is what you would have to type if extensions were disabled.

 

"rmdir" Command Help Reference

"if" Command Help Reference

Batch Command Help Reference Documents

⇑⇑ Windows Batch File Tutorials

2021-08-01, 2401🔥, 0💬