Windows 11 フォルダ削除 コマンドプロンプト

Remove-Item -Force

Windows 10 11 の コマンドプロンプトで フォルダを削除する場合は、 RMDIR もしくは RD というコマンドを使います

rmdir コマンド 例

c: のルートに test1というフォルダがあり その中の test2 フォルダを削除したい場合

下記のコマンドでフォルダを削除できます

cd ¥test1
rmdir /s test2

「/s」で フォルダ内にデータがあっても フォルダ削除できます

rm コマンドも 方法は同じです

rd /s /q フォルダ名

コマンド内に 「/q」を含めると 「、 よろしいですか?」の質問が 表示されることなく フォルダ削除できます。

PowerShell で フォルダ削除 する場合

PowerShell の場合 Remove-Item コマンドを使います

Remove-Item -Force .\フォルダ名

「-Force」を 含めると サブフォルダなどの含めて フォルダ/ファイルを 削除できます

「-Force」がないと 「The item at フォルダ名 has children and the Recurse parameter was not specified. If you continue, all children
will be removed with the item. Are you sure you want to continue?」と 表示されます

PowerShell ドキュメント や デスクトップフォルダ名 のフルパス (PATH) 取得

[Environment+SpecialFolder].GetEnumNames()

PowerShellで ドキュメント・デスクトップなどのフォルダ名の Full Pathは、 [Environment] を使えば簡単に取得できます。

デスクトップ フォルダ名 取得

 [Environment]::GetFolderPath("Desktop")
PowerShell デスクトップ フォルダ名 取得

ドキュメント フォルダ名 取得

 [Environment]::GetFolderPath("MyDocuments")

特殊フォルダの一覧

GetFolderPath に、 “Desktop”など文字を入れていますが

他 何が入るのか 一覧を確認できます

 [Environment+SpecialFolder].GetEnumNames()
[Environment+SpecialFolder].GetEnumNames() コマンド実行
2022 MJELD TECHNOLOGIES. ALL RIGHTS RESERVED