Forum Discussion
2 years ago
Cleared cach files and after playing one game of BF2041 the cache folder had 1,500 files and the size of the files totaled 640MB. I call this unacceptable and want it fixed now.
LoGiH1
2 years agoNew Novice
i have another way to automate delete cache
Save below script to .bat file, run the .bat file, and run the game.
what it do:
it will delete every 20min the cache folder, the numer 1200 equalt to 20min.
you can change it as needed.
@echo off
:loop
del /q "C:\Users\user\AppData\Local\BattlefieldGameData.kin-release.Win32\cache\*.*"
timeout /t 1200 /nobreak >nul
goto loop