Windows에서 박쥐 파일을 사용하여 폴더와 모든 내용을 삭제하는 방법은 무엇입니까?


143

bat 파일을 사용하여 모든 파일과 하위 폴더가있는 폴더를 삭제하고 싶습니다.

다음을 시도했지만 작동하지 않습니다.

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

아무도 도와 줄 수 있습니까?

답변:


259
@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

31
  1. del /s /q c:\where ever the file is\*
  2. rmdir /s /q c:\where ever the file is\
  3. mkdir c:\where ever the file is\

-2

del / s / qc : \ 파일이있는 위치 *

폴더와 하위 폴더의 모든 파일이 삭제되지만 빈 하위 폴더는 그대로 유지됩니다.


4
질문은 :with all files and subfolders
Stephan

@Stephan 당신이 맞아요. 그리고 내 메시지는 솔루션 # 1이 하위 폴더를 삭제하지 않는다는 것입니다. 적어도 나를 위해
Alexander Bondarchuk
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.