mrd

MS-DOS形式のディスクにあるディレクトリをマウントせずに削除します。


書式

mrd ディレクトリ名 [ディレクトリ名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
SAMPLE~2     <DIR>     2008-10-05   4:03  SampleDir02
        4 files                  86 bytes
                          1 455 104 bytes free

# mrd 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
        3 files                  86 bytes
                          1 455 616 bytes free

▲PageTop