mirror of
https://github.com/robweber/xbmcbackup.git
synced 2025-11-23 11:41:30 +01:00
added extractor progress bar and additional progress info
This commit is contained in:
@@ -107,9 +107,12 @@ class ZipFileSystem(Vfs):
|
||||
def cleanup(self):
|
||||
self.zip.close()
|
||||
|
||||
def extract(self,path):
|
||||
def extract(self,aFile,path):
|
||||
#extract zip file to path
|
||||
self.zip.extractall(path)
|
||||
self.zip.extract(aFile,path)
|
||||
|
||||
def listFiles(self):
|
||||
return self.zip.infolist()
|
||||
|
||||
class DropboxFileSystem(Vfs):
|
||||
client = None
|
||||
|
||||
Reference in New Issue
Block a user