Last active
January 4, 2019 16:33
-
-
Save pypy-vrc/7943081ee9a51a8b55e197d80e6260fb to your computer and use it in GitHub Desktop.
VRChatCacheRemover v0.02
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
@ECHO OFF | |
SETLOCAL | |
SET CACHE_DIR=%LOCALAPPDATA%Low\VRChat\VRChat | |
ECHO =========================== | |
ECHO VRChat Cache Remover v0.02a | |
ECHO --------------------------- | |
ECHO( | |
ECHO DCinside VRChat Minor Gallery | |
ECHO by pypy(mina#5656) | |
ECHO( | |
ECHO CACHE DIRECTORY IS %CACHE_DIR% | |
ECHO( | |
ECHO *WARNING* | |
ECHO DELETING ALL CONTENTS IN CACHE DIRECTORY! THIS CAN'T BE UNDONE.. | |
ECHO( | |
SET /P C=Are you proceeding [Y/N]? | |
IF /I "%C%" NEQ "Y" GOTO :EXIT | |
IF NOT EXIST "%CACHE_DIR%\" GOTO :EXIT | |
DEL /S /F /Q "%CACHE_DIR%\*.*" | |
FOR /D %%D IN ("%CACHE_DIR%\*") DO ( | |
ECHO Y|RD /S "%%D" | |
) | |
ECHO( | |
ECHO Complete! | |
:EXIT | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment