2
1

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.

Remove-Itemコマンドレットとは?

Posted at

##Remove-Itemコマンドレットとは?
Windows PowerShellコマンドレット「Remove-Item」は、特定の名前を含むファイルやフォルダなどのアイテムを削除するためのコマンドレットです。例えば、「temp」や「.exe」といった名前を含むファイルやフォルダを削除することができます。

 また、Remove-Itemコマンドレットは、コマンドプロンプトの「del」コマンドや、Linuxの「rm」コマンド、「rmdir」コマンドと同じ要領で使用できます。

####Remove-Itemコマンドレットの書式

Remove-Item [パス] [オプション]

####Remove-Itemコマンドレットの主なオプション
Remove-Itemコマンドレットの主なオプションは次の通りです。

オプション 意味
-Path ファイルのパスを指定する。省略可能
-Exclude 指定したパターンに一致するファイルやフォルダを指定する
-Force 隠しファイルや読み取り専用ファイルなどを削除する
-Recurse 指定したフォルダとそのサブフォルダに含まれるファイル/フォルダを削除する
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?