Windows 中想要刪除檔案,一般人會使用 右鍵 -> 刪除
的方式,又或者會用 shift + del
略過垃圾桶的方式,但上述這兩種方法在刪除大量零碎檔案的時候速度非常慢,原因是 Windows Explorer 會先計算檔案總數與大小後才會執行刪除的動作,這邊跟大家分享一個快速刪除檔案的指令。
方法如下:
- 使用系統管理員開啟
cmd.exe
- 輸入下列指令
del /f/s/q C:\Backup > nul rmdir /s/q C:\Backup
參考:What’s the fastest way to delete a large folder in Windows?