Last active
April 20, 2016 06:05
-
-
Save vitqst/679453d09263986f4d186b44f9868c92 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 | |
| REM Create DIR | |
| for %%f in (AI IMAGES PSD ICON DOC APP RAR EXE OTHER) do (if not exist "%mypath%%%f" mkdir "%mypath%%%f") | |
| REM do move | |
| for %%a in (AI svg eps) do (for /R %mypath% %%f in (*.%%a) do move "%%f" "%mypath%AI") | |
| for %%a in (jpg jpeg gif tif cr2) do (for /R %mypath% %%f in (*.%%a) do move "%%f" "%mypath%IMAGES") | |
| for %%a in (ico png) do (for /R %mypath% %%f in (*.%%a) do move "%%f" "%mypath%ICON") | |
| for %%a in (doc docx pdf) do (for /R %mypath% %%f in (*.%%a) do move "%%f" "%mypath%DOC") | |
| for %%a in (mp4 ts) do (for /R %mypath% %%f in (*.%%a) do move "%%f" "%mypath%VIDEO") | |
| for %%a in (rar zip) do (for /R %mypath% %%f in (*.%%a) do move "%%f" "%mypath%RAR") | |
| for %%a in (html temp art) do (for /R %mypath% %%f in (*.%%a) do move "%%f" "%mypath%OTHER") | |
| for %%a in (exe msi apk) do (for /R %mypath% %%f in (*.%%a) do move "%%f" "%mypath%APP") | |
| for /R %mypath% %%f in (*.psd) do move "%%f" "%mypath%PSD" | |
| 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