mdeltree

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


書式

mdeltree ディレクトリ名 [ディレクトリ名2 ・・・]
mdeltree [-v]

▲PageTop

オプション

オプション名 説明
-v 詳細表示を行います。

▲PageTop

実行例

MS-DOS形式のディスク上の空でないディレクトリ「SampleDir02」(「SampleDir02」が存在するものとします。)を削除します。

  1. ディレクトリ「SampleDir02」が存在することを確認します。
  2. mrd」コマンドでは空ではないディレクトリ「SampleDir02」を削除できないことを確認します。
  3. 「mdeltree」コマンドでディレクトリ「SampleDir02」を削除します。
  4. ディレクトリ「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~3 TXT       397 2008-10-03  15:34  SampleText03.txt
SAMPLE~1     <DIR>     2008-10-03  15:34  SampleDir01
SAMPLE~2     <DIR>     2008-10-05   4:45  SampleDir02
        5 files                 483 bytes
                          1 454 080 bytes free

# mrd SampleDir02 [Enter]
Directory A:/SampleDir02 non empty
# 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~3 TXT       397 2008-10-03  15:34  SampleText03.txt
SAMPLE~1     <DIR>     2008-10-03  15:34  SampleDir01
SAMPLE~2     <DIR>     2008-10-05   4:45  SampleDir02
        5 files                 483 bytes
                          1 454 080 bytes free

# mdeltree 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~3 TXT       397 2008-10-03  15:34  SampleText03.txt
SAMPLE~1     <DIR>     2008-10-03  15:34  SampleDir01
        4 files                 483 bytes
                          1 455 104 bytes free
        

▲PageTop