mmd

MS-DOS形式のディスク上にディレクトリをマウントせずに作成します。


書式

mmd ディレクトリ名 [ディレクトリ名2 ・・・]

▲PageTop

実行例

MS-DOS形式のディスク上にディレクトリ「SampleDir02」を作成します。

  1. ディレクトリ「SampleDir02」が存在しないことを確認します。
  2. ディレクトリ「SampleDir02」を作成します。
  3. ディレクトリ「SampleDir02」が作成されていることを確認します。

実行結果

# mdir [Enter]
 Volume in drive A has no label
Directory for A:/

SAMPLE~1 TXT        43 2008-10-03  15:33  SampleText01.txt
SAMPLE~2 TXT        43 2008-10-03  15:34  SampleText02.txt
SAMPLE~1     <DIR>     2008-10-03  15:34  SampleDir01
        3 files                  86 bytes
                          1 455 616 bytes free

# mmd SampleDir02 [Enter]
# mdir [Enter]
 Volume in drive A has no label
Directory for A:/

SAMPLE~1 TXT        43 2008-10-03  15:33  SampleText01.txt
SAMPLE~2 TXT        43 2008-10-03  15:34  SampleText02.txt
SAMPLE~1     <DIR>     2008-10-03  15:34  SampleDir01
SAMPLE~2     <DIR>     2008-10-05   4:03  SampleDir02
        4 files                  86 bytes
                          1 455 104 bytes free

▲PageTop