Crash with FileNotFound exception
Closed this issue · 6 comments
Script crashed when extracted file has subdir in path.
Im solved this by adding makedirs command:
print("Extracting %s..." % entry.name)
os.makedirs(os.path.dirname(out_file), exist_ok=True)
wfile = open(out_file, "wb")
Don't tried repack feature )
Are you able to share the APK that's causing the issues?
Thank you - I see what's going on here. I'll roll this into the next push. Still working on refactoring to make the pack
command work, but unpack
should support this + architecture specific assemblies once I push.
@Gorge123 can you test with the latest commits on master? This should work now. Thanks for the help!
@Gorge123 can you test with the latest commits on master? This should work now. Thanks for the help!
works good now )
Great, thanks!