Kanma / MPQExtractor

A command-line tool to extract files from MPQ archives
Other
127 stars 39 forks source link

Implement command to extract all files, preserving paths #12

Closed lubosz closed 3 months ago

lubosz commented 8 years ago

As far as I understand there is no command to extract all files in a MPQ archive, including paths. Isn't this the most obvious thing for this tool to do? Besides that, great tool, thanks for writing it.

Kanma commented 8 years ago

This should work:

./MPQExtractor -e "*" -f -o out /path/to/art.MPQ

(note that the * is enclosed in "", to prevent the shell to interpret it)

Or maybe were you suggesting an --extractall option that would act as a convenience shortcut for --extract "*" --fullpath?

falzard commented 7 years ago

Add it to the readme and the manual please :P