web-dev-qa-db-ja.com

MDとMKDIRバッチコマンドの違いは何ですか?

どちらのコマンドでもフォルダが作成されます。 I read MKDIRでサブフォルダも作成できること。

  • それだけが違いますか?
  • 同じことをする2つのコマンドがあるのはなぜですか?
  • どちらを使用すればよいですか?
12
Tomas Kubes

同じコマンドの単なるエイリアスです。ヘルプメッセージは次のとおりです。

C:\>md /?
Creates a directory.

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

そして

C:\>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.
18
npocmaka

@npocmakaの answer に加えて、参考のために、そのようなすべてのエイリアスのリストを提供します。

cd   =  chdir
md   =  mkdir
rd   =  rmdir
ren  =  rename
del  =  erase
22
aschipfl