萬盛學電腦網

 萬盛學電腦網 >> 電腦入門 >> 刪除E盤目錄下指定文件夾和指定文件之外的其他文件夾的批處 電腦技術吧

刪除E盤目錄下指定文件夾和指定文件之外的其他文件夾的批處 電腦技術吧

文件是只讀屬性,只有一個文件夾和一個文件不刪,其它的都要刪除。

假設指定的文件夾和文件分別是 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文件運行

 

    copyright © 萬盛學電腦網 all rights reserved