桌面整理器2.0!

還記得上一次講到的桌面整理器嗎?沒錯,今天,它有了新一個版本。
本次更新內(nèi)容:
新加分區(qū)Applications,將原本歸至安裝文件的exe程序放進了程序分區(qū)。
在開頭添加了@echo off命令,簡化輸出。
將很多壓縮文件格式,如.jar .7z .tar等等。

@echo off
set d=%USERPROFILE%\Desktop
pause
cd %d%
mkdir "Photos" "Code Files" "Installtion Files" "Zipped Files" "Other" "Applications"
move /Y *.png "Photos"
move /Y *.jpg "Photos"
move /Y *.jpeg "Photos"
move /Y *.jfif "Photos"
move /Y *.bat "Code Files"
move /Y *.py "Code Files"
move /Y *.cmd "Code Files"
move /Y *.pyw "Code Files"
move /Y *.exe "Applications"
move /Y *.msi "Installtion Files"
move /Y *.inf "Installtion Files"
move /Y *.zip "Zipped Files"
move /Y *.rar "Zipped Files"
move /Y *.7z "Zipped Files"
move /Y *.tar "Zipped Files"
move /Y *.gz "Zipped Files"
move /Y *.jar "Zipped Files"
move /Y *.gz2 "Zipped Files"
move /Y *.* "Other"
cd "Other"
move *.lnk %d%
pause