Kodi 16: .fi files in cache folder
#1
Using kodi 16 there are some fi files generated in my cache folder. They apparently cache contents of addon video sections and prevent the addon from refreshing when that section is called directly from the favorites. In order to get the section to refresh I have to reopen it from within the addon and not the favorites. This was not the case in Kodi 15.

Is there any way to prevent this behavior?
Reply
#2
Semisolved using this autoexec.py file:
Code:
import os
import xbmc

path = xbmc.translatePath( "special://temp" )
filenames = next(os.walk(path))[2]

for i in filenames:
    if ".fi" in i:
        os.remove(os.path.join(path, i))
Reply

Logout Mark Read Team Forum Stats Members Help
Kodi 16: .fi files in cache folder0