The button below does what it should.. except it does all the extraction first, then packs all the extracted files once for each file selected.
What I expect it to do, is to run ALL commands in the button once for each selected file, not each line for each selected file.
I have tried every modifier I could find which might do what I want,
but no luck.
So far I have this (I use the gui versions of both archivers, the advantage is that it supports more formats to extract from, as opposed to the commandline version of rar):
Suggestions? or hopefully, a solution?
<?xml version="1.0"?> Convert to 7-Zip Convert to 7-Zip #newcommand CreateFolder /temp/tmpcnv @nofilenamequoting @sync:"c:\program files\winrar\winrar.exe" x "{filepath$}" "{alias|temp}\tmpcnv\" @sync:cd "{alias|temp}\tmpcnv\" @sync:"c:\program files\7-zip\7zg.exe" a -t7z -mx9 -r "{sourcepath}\{file$|nopath|noext}.7z" *.* @sync:cd "{sourcepath}" delete quiet force "{alias|temp}\tmpcnv" @useactivelisterThe intention with this button is to introduce a missing function for 7zip,
the ability to convert from other archivetypes to its own (similar to what winrar can do).