Can Kodi clear cache files? Unfortunately, Kodi does not naturally have the ability to clear the cache, but you can make it possible with the help ofthird-party add-ons installation. Let me introduce two Kodi cache cleaners and the corresponding operation steps below. How to Clear Cache on ...
How to Clear the Cache on Kodi Before continuing to read, please note that these instructions refer to Kodi version 17 (codenamed Krypton). If you're running a different version of Kodi, the methodology for installing the repos and addons may differ. We're going to use the Merlin Wizard ...
def clear_cache(): kodi.log('STARTUP CLEAR CACHE ACTIVATED') xbmc_cache_path = os.path.join(xbmc.translatePath('special://home'), 'cache') if os.path.exists(xbmc_cache_path) == True: for root, dirs, files in os.walk(xbmc_cache_path): file_count = 0 file_count += len(files...