Removes (deletes) a directory.
ใช้คำสั่งนี้ครับ…เห็นถามกันเยอะ
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
พิมพ์ cmd ที่ Start…Run เพื่อออกไป DOS
C:\RD /S /Q โฟลเดอร์ที่จะลบ
(/S คือลบทิ้งทั้งราก /Q คือ ไม่ต้องถาม)
ถ้ามันลบไม่ได้จะขึ้น Access Deined
ถ้าเป็นอย่างนี้เขียนแบทไฟล์ขึ้นมาดีกว่าดังนี้
1. เปิด NotePad ขึ้นมาพิมพ์ หรือก็อปไปใช้
@if “%1” == “” goto ShowMsg
@attrib -r -s -h %1 /s
@rd /s /q %1
@goto EndCmd
:ShowMsg
@Echo Type %0 PathName
@Echo (Cmd…Delete Tree Batch File)
:EndCmd
2. บันทึกเป็น C:\Windows\DT.BAT
3. พิมพ์ Cmd ที่ Start…Run เพื่อออกไป DOS
4. พิมพ์ DT (ตามด้วยชื่อโฟล์เดอร์ที่จะลบทิ้ง)
5. หายหมดแน่นอน