Replies: 2 comments
-
Do the docs help? https://python-cabarchive.readthedocs.io/en/latest/ |
Beta Was this translation helpful? Give feedback.
0 replies
-
Also -- I'm not sure LZX is supported, I think only |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can you provide some examples in the README file to show how to use this package? I can;t seem to figure out how to use this to extract or create CAB files.
For example, how do I create a CAB file with LZX compression like I would with Windows CABARC?
cabarc.exe -m LZX:15 -o -i 4392 -s 8 n ./<cab_file_name>.cab <files>
As well, how do I extract CAB files like I would with WIndow's MAKECAB?
makecab /D CompressionType=LZX /D CompressionMemory=15 /D ReservePerCabinetSize=8 <file> <file>.cab
For windows this is not an issue, but I would like to be able to do this on Linux and macOS as well.
Beta Was this translation helpful? Give feedback.
All reactions