
Originally Posted by
OpNf ViRuS
Yeah Thats What I Currently Use But I Was Just Seeing If Anyone Could Tell Me How To Use The Command Line/Notepad Version (dll) ?
To add all the files in the current directory to the archive my_archive.uha:
Code:
uharc a -mx my_archive.uha *.*
"-mx" is for PPM mode which usually gives best compression, alternatives are "-m3" and "-mz" which are faster but give worse compression. You can also leave the ".uha" extension away, you can use (multiple) filenames instead of the filemask and you can exclude files by prepending "!" to the filename/filemask.
To add all the files in the current directory and subdirectories, add "-pr -r+":
Code:
uharc a -mx -pr -r+ my_archive.uha *.*
To extract the files from the archive, just do:
Code:
uharc x my_archive.uha
Advanced settings:
"-md32768" gives slightly better compression, "-b65536" gives more speed for large file collection, "-d2" adds nice verbosity:
Code:
uharc a -md32768 -b65536 -d2 -mx my_archive.uha *.*
I use this for a batch file named "uha.bat" that contains this:
Code:
uharc a -md32768 -b65536 -d2 -mx %1 %2 %3 %4 %5 %6 %7 %8 %9
It makes things a bit easier:
Code:
uha my_archive *.*
uha -pr -r+ my_subdir_archive *.*
uharc x my_archive