桌面整理器2.0!

还记得上一次讲到的桌面整理器吗?没错,今天,它有了新一个版本。
本次更新内容:
新加分区Applications,将原本归至安装文件的exe程序放进了程序分区。
在开头添加了@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