mren

MS-DOS形式のディスクにあるファイルやディレクトリのリネームを行います。


書式

mren 対象ファイル 新しいファイル名
mren 対象ディレクトリ 新しいディレクトリ名

▲PageTop

実行例

MS-DOS形式のディスク上のディレクトリ「SampleDir02」(「SampleDir02」が存在するものとします。)を「SampleDir03」にリネームします。

  1. ディレクトリ「SampleDir02」が存在することを確認します。
  2. ディレクトリ「SampleDir02」を「SampleDir03」にリネームします。
  3. ディレクトリ「SampleDir02」が「SampleDir03」になっていることを確認します。

実行結果

# 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~3 TXT       397 2008-10-05   4:45  SampleText03.txt
SAMPLE~2     <DIR>     2008-10-05   4:45  SampleDir02
        5 files                 483 bytes
                          1 454 592 bytes free

# mren SampleDir02 SampleDir03 [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~3 TXT       397 2008-10-05   4:45  SampleText03.txt
SAMPLE~3     <DIR>     2008-10-05   4:45  SampleDir03
        5 files                 483 bytes
                          1 454 592 bytes free

▲PageTop