Last active
January 28, 2020 11:08
-
-
Save snmslavk/5ee913165afffa3bef5cb06ae4955d8a to your computer and use it in GitHub Desktop.
The script that cleans unused #gwt temp files
This file contains 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
@ECHO OFF | |
ECHO Cleaning ImageResourceGenerator files ... | |
IF EXIST "%TEMP%\ImageResourceGenerator*" DEL "%TEMP%\ImageResourceGenerator*" /F /Q | |
ECHO Cleaning uiBinder files ... | |
IF EXIST "%TEMP%\uiBinder*" DEL "%TEMP%\uiBinder*" /F /Q | |
ECHO Cleaning gwt files ... | |
IF EXIST "%TEMP%\gwt*" DEL "%TEMP%\gwt*" /F /Q | |
ECHO Cleaning gwt directories ... | |
FOR /D /R %TEMP% %%x IN (gwt*) DO RMDIR /S /Q "%%x" | |
ECHO Cleaning ImageResourceGenerator files ... | |
IF EXIST "C:\Temp\ImageResourceGenerator*" DEL "C:\Temp\ImageResourceGenerator*" /F /Q | |
ECHO Cleaning uiBinder files ... | |
IF EXIST "C:\Temp\uiBinder*" DEL "C:\Temp\uiBinder*" /F /Q | |
ECHO Cleaning gwt files ... | |
IF EXIST "C:\Temp\gwt*" DEL "C:\Temp\gwt*" /F /Q | |
ECHO Cleaning gwt directories ... | |
FOR /D /R C:\Temp %%x IN (gwt*) DO RMDIR /S /Q "%%x" | |
ECHO. | |
ECHO Done. | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The script that cleans unused gwt temp files