xbmcbackup/resources/lib/vfs.py
robweber 9eb857396a modified backup.py to test dropbox api
added start of vfs.py to abstract file repos
2012-10-26 09:42:10 -05:00

18 lines
257 B
Python

import utils as utils
class Vfs:
type = 'none'
def __init__(type):
self.type = type
def listdir(directory):
return {}
def mkdir(directory):
return True
def copy(source,dest):
return True