mirror of
https://github.com/robweber/xbmcbackup.git
synced 2025-06-23 19:14:33 +02:00
first commit - kind of works
This commit is contained in:
19
default.py
Normal file
19
default.py
Normal file
@ -0,0 +1,19 @@
|
||||
import xbmc
|
||||
import xbmcaddon
|
||||
import xbmcvfs
|
||||
import shutil
|
||||
|
||||
#get the addon class
|
||||
__addon_id__ = 'script.xbmcbackup'
|
||||
Addon = xbmcaddon.Addon(__addon_id__)
|
||||
|
||||
def syncFiles():
|
||||
xbmc.log(xbmc.translatePath("special://profile"))
|
||||
xbmc.log(Addon.getSetting("remote_path"))
|
||||
|
||||
if(xbmcvfs.exists(Addon.getSetting("remote_path") + "profile")):
|
||||
shutil.rmtree(Addon.getSetting("remote_path") + "profile")
|
||||
|
||||
shutil.copytree(xbmc.translatePath("special://profile"),Addon.getSetting("remote_path") + "profile")
|
||||
|
||||
syncFiles()
|
Reference in New Issue
Block a user