Created
April 20, 2016 04:10
-
-
Save vitqst/cbe4e640f88e9f290bccd79b50fc1642 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set mypath=%~dp0 | |
| if not exist "%mypath%AI" mkdir "%mypath%AI" | |
| if not exist "%mypath%IMAGES" mkdir "%mypath%IMAGES" | |
| if not exist "%mypath%ICON" mkdir "%mypath%ICON" | |
| if not exist "%mypath%PSD" mkdir "%mypath%PSD" | |
| if not exist "%mypath%DOC" mkdir "%mypath%DOC" | |
| if not exist "%mypath%VIDEO" mkdir "%mypath%VIDEO" | |
| if not exist "%mypath%RAR" mkdir "%mypath%RAR" | |
| move "%mypath%*.ai" "%mypath%AI" | |
| move "%mypath%*.svg" "%mypath%AI" | |
| move "%mypath%*.eps" "%mypath%AI" | |
| move "%mypath%*.jpg" "%mypath%IMAGES" | |
| move "%mypath%*.gif" "%mypath%IMAGES" | |
| move "%mypath%*.jpeg" "%mypath%IMAGES" | |
| move "%mypath%*.cr2" "%mypath%IMAGES" | |
| move "%mypath%*.tif" "%mypath%IMAGES" | |
| move "%mypath%*.png" "%mypath%ICON" | |
| move "%mypath%*.ico" "%mypath%ICON" | |
| move "%mypath%*.psd" "%mypath%PSD" | |
| move "%mypath%*.pdf" "%mypath%DOC" | |
| move "%mypath%*.doc" "%mypath%DOC" | |
| move "%mypath%*.docx" "%mypath%DOC" | |
| move "%mypath%*.rar" "%mypath%RAR" | |
| move "%mypath%*.zip" "%mypath%RAR" | |
| move "%mypath%*.mp4" "%mypath%VIDEO" | |
| move "%mypath%*.mkv" "%mypath%VIDEO" | |
| for /f "usebackq delims=" %%d in (`"dir /ad/b/s | sort /R"`) do rd "%%d" | |
| PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment