mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-12 20:21:21 +08:00
修改部分ui
This commit is contained in:
parent
eefd406fee
commit
7f42b9eaa7
@ -229,6 +229,16 @@ class DecryptThread(QThread):
|
|||||||
# print(inpath)
|
# print(inpath)
|
||||||
output_path = os.path.join(output_dir, file)
|
output_path = os.path.join(output_dir, file)
|
||||||
tasks.append([self.key, inpath, output_path])
|
tasks.append([self.key, inpath, output_path])
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
name,suffix = file.split('.')
|
||||||
|
if suffix.startswith('db_SQLITE'):
|
||||||
|
inpath = os.path.join(root, file)
|
||||||
|
# print(inpath)
|
||||||
|
output_path = os.path.join(output_dir, name+'.db')
|
||||||
|
tasks.append([self.key, inpath, output_path])
|
||||||
|
except:
|
||||||
|
continue
|
||||||
self.maxNumSignal.emit(len(tasks))
|
self.maxNumSignal.emit(len(tasks))
|
||||||
for i, task in enumerate(tasks):
|
for i, task in enumerate(tasks):
|
||||||
if decrypt.decrypt(*task) == -1:
|
if decrypt.decrypt(*task) == -1:
|
||||||
|
Loading…
Reference in New Issue
Block a user