배치 스크립트를 사용하여 파일 삭제

MD Aminul Islam 2023년3월20일
배치 스크립트를 사용하여 파일 삭제

이 문서에서는 Batch 스크립트를 사용하여 파일을 삭제하는 방법을 보여줍니다.

배치 스크립트를 사용하여 파일 삭제

일반적으로 삭제를 클릭하거나 키보드의 삭제 버튼을 눌러 파일을 쉽게 삭제할 수 있습니다. 그러나 Batch에서는 일반적인 형식이나 구문을 따라야 합니다.

통사론:

del filename

아래 예를 통해 이 명령의 다양한 형식을 볼 수 있습니다.

이 예에서는 test.txt라는 파일을 삭제합니다. 이것은 파일의 디렉토리에 있는 동안 이것을 실행할 때만 작동합니다.

del test.txt

아래 예는 위치에서 제공하는 파일을 삭제합니다.

del d:\test.txt

이 명령은 디렉토리에서 .txt 파일 유형을 모두 삭제합니다.

del d:\*.txt

마지막 예제는 파일 이름이 무엇이든 상관없이 est.txt로 끝나는 디렉터리에서 파일을 삭제합니다.

del d:\?est.txt

위에서 설명한 모든 방법은 Windows 환경에만 적용됩니다.

MD Aminul Islam avatar MD Aminul Islam avatar

Aminul Is an Expert Technical Writer and Full-Stack Developer. He has hands-on working experience on numerous Developer Platforms and SAAS startups. He is highly skilled in numerous Programming languages and Frameworks. He can write professional technical articles like Reviews, Programming, Documentation, SOP, User manual, Whitepaper, etc.

LinkedIn

관련 문장 - Batch File