ZArchive
ZArchive copied to clipboard
Question: How would you make a batch file that would auto add WUA files for decompression?
Converted my games to WUA format and wanting to try take the icon and background files and use them for stuff but that requires they be decompressed to access them.
Any way I could create a batch file that would just auto decompress every WUA file in a directory?
Tried to make it myself but the majority of my command line knowledge left me about 20 years ago.
Thank you in advance for your time, much appreciated.
Off-topic: Now that I think about it, Cemu could probably start using them itself and make its own mock up of the Wii U interface with them.
The for
loop in batch files is a little... unwieldy for users of any other shell script language (like me). If I'm reading https://ss64.com/nt/for.html right, it's something like:
FOR %%x IN (*.wua) DO zarchive "%%x" "%%~nx"
That should take, e.g. 1.wua and pop it in a folder called "1".
above is not quite working. Any way you can add a wildcard option to zarchive so we can just do zarchive . and decompress all WUAs in the directory?