mirror of
https://github.com/RealityNet/kobackupdec.git
synced 2025-04-05 19:41:38 +08:00
Fixed double folder creation error.
This commit is contained in:
parent
52331b75d5
commit
d55d218c3c
@ -459,7 +459,7 @@ def main(password, backup_path_in, dest_path_out):
|
||||
for entry in apk_files:
|
||||
logging.info('working on %s', entry.name)
|
||||
dest_file = data_apk_dir.joinpath(entry.name + '-1')
|
||||
dest_file.mkdir()
|
||||
dest_file.mkdir(exist_ok=True)
|
||||
dest_file = dest_file.joinpath('base.apk')
|
||||
dest_file.write_bytes(entry.read_bytes())
|
||||
done_list.append(entry)
|
||||
|
Loading…
x
Reference in New Issue
Block a user