반응형
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
del /s /q c:\where ever the file is\*
rmdir /s /q c:\where ever the file is\
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
반응형
'programing' 카테고리의 다른 글
라라벨 4 웅변가와 열을 연결하는 방법은 무엇입니까? (0) | 2023.07.22 |
---|---|
Postgres 고유 제약 조건과 인덱스 비교 (0) | 2023.04.13 |
C# 평탄화 json 구조 (0) | 2023.04.03 |
Python boto3를 사용하여 S3에서 JSON 파일 읽기 (0) | 2023.04.03 |
Word press에서 태그 링크를 재생하는 방법 (0) | 2023.04.03 |