I'd like to convert a couple thousand zip files to 7z, with maximum compression and multithreading enabled.
Also in another place. Like c:\temp\file.zip to f:\converted\file.7z
3 Answers
You can use arepack (included in atool command suite) to convert between archive formats. Combined with a little bash, it makes easy to convert a bunch of ZIP files to 7z:
for f in *.zip; do arepack $f $f.7z; done
rm *.zip 2 Nevermind, does the job just fine!
Edit: But hell, it takes way too long....
1I wrote a script in Python - You can run it with:
./zip27z.py your_archive.zipand it will create your_archive.7z near it.
Or you can install it on your system with make install (if you see the repo)
And just call:
zip27z your_archive.zipIt needs unzip and 7za programs.
You can modify it as you wish for your needs (and send me a pull request)