文件是只讀屬性,只有一個文件夾和一個文件不刪,其它的都要刪除。
假設指定的文件夾和文件分別是 e:hello e:world.mp3
for /f "tokens=*" %%i in ('dir /s /b e:') do (if not "%%i"=="e:hello"
if not "%%i"=="e:world.mp3" del /f /s /q "%%i" & rd /s /q "%%i")
rem 會刪除d盤中除e:hello e:world.mp3外的所有文件
rem 以上代碼保存為.bat文件運行