jakev/pyxamstore

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 )

jakev commented

Are you able to share the APK that's causing the issues?

jakev commented

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.

jakev commented

@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 )

jakev commented

Great, thanks!