0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

windows ファイル・フォルダの削除コマンド

Last updated at Posted at 2020-10-24

ファイル削除

単体の削除
$ del /s /q ファイル名

拡張子(例えばjpg)を指定して削除するとき、 *.jpg と入力

フォルダ削除

単体の削除
$ rd /s /q フォルダ名
複数の削除
$ rd /s /q フォルダ名1 フォルダ名2 フォルダ名3

/s:サブフォルダも削除
/q:削除確認メッセージを表示せずに削除

注意
コマンドを実行しても、どこまで削除されているのかがコマンドプロンプトには出力されない。
少し不安になりますが、時間がたてば終わります。

参考サイト

del /s /q コマンドとエクスプローラの削除の違い
フォルダ(ディレクトリ)を削除する

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?