ディレクトリを削除します。但し、ディレクトリが空でなければ削除できません。
空ではないディレクトリを削除するには、「rm」コマンド(オプション:-r)を使用してください。
rmdir [オプション ・・・] ディレクトリ名 [ディレクトリ名2 ・・・]
オプション名 | 説明 |
--ignore-fail-on-non-empty | ディレクトリが空の場合のエラーを表示しません。(ディレクトリは削除されません。) |
-p, --parents | 指定したディレクトリ配下のディレクトリも削除します。 |
-v, --verbose | 経過を表示します。 |
--help | 使用方法を表示します。 |
--version | バージョン情報を表示します。 |
ディレクトリ「sampledir01」(ファイル「SampleText01.txt」を内包しているディレクトリ「sampledir01」があるものとします。)を削除します。
$ ls -R [Enter] .: smpledir01/ ./smpledir01: SampleText01.txt $ rmdir sampledir01/ [Enter] rmdir: sampledir01/: ディレクトリは空ではありません $ rm sampledir01/SampleText01.txt [Enter] $ rmdir sampledir01/ [Enter] $ ls sampledir01 [Enter] /bin/ls: sampledir01: そのようなファイルやディレクトリはありません