will copy zip file from remote to dest

This commit is contained in:
Rob Weber
2014-08-01 12:37:57 -05:00
parent 933fdbdf09
commit c28f9fd26b
2 changed files with 15 additions and 8 deletions

View File

@@ -62,6 +62,7 @@ class XBMCFileSystem(Vfs):
return xbmcvfs.mkdir(directory)
def put(self,source,dest):
utils.log(source + ":" + dest)
return xbmcvfs.copy(source,dest)
def rmdir(self,directory):
@@ -80,7 +81,6 @@ class ZipFileSystem(Vfs):
self.root_path = ""
self.zip = zipfile.ZipFile(rootString,mode=mode)
def listdir(self,directory):
return True