Difference between revisions of "UCC decompress"

From Oldunreal-Wiki
Jump to navigation Jump to search
(Created page with 'ucc decompress filename.uz is used to decompress a .uz file. Unfortunately, ucc decompress doesn't support wildcards, so decompressing a complete folder can not be decompressed…')
 
Line 14: Line 14:


(add specific paths if the .uz files are not in the system folder)
(add specific paths if the .uz files are not in the system folder)
[[Category:General]]
[[Category:Scripting]]
[[Category:Mods]]
[[Category:Mapping]]

Revision as of 16:15, 11 September 2011

ucc decompress filename.uz is used to decompress a .uz file.


Unfortunately, ucc decompress doesn't support wildcards, so decompressing a complete folder can not be decompressed with "ucc decompress *.uz". That can be very painful if you need to recover your files from a http redirect folder.


A workaround is following:

put this into a batch file (.bat)

for %%f in (*.uz) do ucc decompress %%f


(add specific paths if the .uz files are not in the system folder)