programing

Windows에서 bat 파일을 사용하여 폴더와 모든 콘텐츠를 삭제하려면 어떻게 해야 합니까?

shortcode 2023. 4. 13. 21:54
반응형

Windows에서 bat 파일을 사용하여 폴더와 모든 콘텐츠를 삭제하려면 어떻게 해야 합니까?

모든 파일이 있는 폴더와 하위 폴더를 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
  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\

언급URL : https://stackoverflow.com/questions/7331056/how-to-delete-a-folder-and-all-contents-using-a-bat-file-in-windows

반응형