1. ホーム
  2. windows

[解決済み] Windowsでbatファイルを使用して、フォルダとすべての内容を削除するにはどうすればよいですか?

2022-03-12 03:15:12

質問

batファイルを使用して、すべてのファイルとサブフォルダを含むフォルダを削除したいのですが、どうすればいいですか?

以下のように試したのですが、うまくいきません。

@DEL D:\PHP_Projects\testproject\Release\testfolder*.*

誰か助けてください。

解決方法は?

@RD /S /Q "D:\PHP_Projects\testproject\Release\testfolder"

説明 :

ディレクトリを削除(消去)します。

RMDIR [/S] [/Q] [drive:]path RD [/S] [/Q] [drive:]path

/S      Removes all directories and files in the specified directory
        in addition to the directory itself.  Used to remove a directory
        tree.

/Q      Quiet mode, do not ask if ok to remove a directory tree with /S