Good Evening all,
I think I'm not understanding the zipfile structure properly heres the code
import xbmc
import zipfile
targetzip = xbmc.translatePath('special://home/userdata/addon_data/plugin.program.tester/test.zip')
extractto = xbmc.translatePath('special://home/userdata/addon_data/plugin.program.tester/')
zip = ZipFile(targetzip)
zip.extractall(extractto)
Any Ideas why Its not working?