我正在开发一个提取zip文件的程序,我已经完成了那部分工作。但我想添加一个进度条来显示提取过程的进度。我已经有一个进度条,但它没有显示提取的进度。我希望它从点0开始并到达点100,这将是提取完成时的结束。但相反,它只是不断重复从点0到点100直到提取完成。我怎么能这样做?
代码:
from threading import Thread
from Tkinter import *
import zipfile
import ttk
class Application(Frame):
def __init__(self, parent):
Frame.__init__(self,parent)
self.pack()
self.create_widgets()
Thread(target=self.startExtr).start()
def create_widgets(self):
self.pBar = ttk.Progressbar(orient=HORIZONTAL, length=200, mode="determinate")
self.pBar.pack(side=BOTTOM)
def startExtr(self):
self.pBar.start()
with zipfile.ZipFile('Kerbal Space Program.zip', "r") as z:
z.extractall("")
self.pBar.stop()
root = Tk()
root.title("Test")
app = Application(root)
root.mainloop()
答案 0 :(得分:0)
Zipfile
似乎没有内置的方式来读取进度(accodering to the docs),因此您可以考虑启动另一个线程并让您的脚本检查每一点如何在新目录中提取了许多文件。这对于一个大文件的进展不起作用,但是您需要使用新库来获得该功能。
我把它拿回来。请查看this question以获取zip文件。
this question用于tar文件。
答案 1 :(得分:0)
不幸的是,在找到答案后不是很有帮助:(但我设法找到了一个非常有用的例子,并且完全符合我的要求!它得到了提取的百分比:)。以下是我找到它的链接:Monitor ZIP File Extraction Python
这是我的新代码:
from threading import Thread
from Tkinter import *
import zipfile
import time
import ttk
class Application(Frame):
def __init__(self, parent):
Frame.__init__(self,parent)
self.pack()
self.create_widgets()
Thread(target=self.unzip).start()
def create_widgets(self):
self.pBar = ttk.Progressbar(orient=HORIZONTAL, length=200, mode="determinate", maximum=100, value=0)
self.pBar.pack(side=BOTTOM)
def unzip(self):
zf = zipfile.ZipFile('Name of the zip file')
uncompress_size = sum((file.file_size for file in zf.infolist()))
extracted_size = 0
for file in zf.infolist():
extracted_size += file.file_size
percentage = extracted_size * 100/uncompress_size
self.pBar["value"] = percentage
zf.extract(file)
root = Tk()
root.title("Test")
app = Application(root)
root.mainloop()