Page 1 of 2

extract many archive files (zip etc) at once

Posted: 05 Jan 2006, 10:09
by vygi
Hi,

first of all - thanks for the great piece of software!

One small proposal:
a possibility to unzip (unpack/extract) several files at once would be great, eg. select archive files, and choose "extract all here" from the right-click menu (or from a plugin menu).

Now, when I have lots of .bz2 files in a directory to be extracted, I must either extract them one by one, or use some external tool to do it.

Thanks for reading this,
Vygi

Re: extract many archive files (zip etc) at once

Posted: 05 Jan 2006, 23:02
by .me
ROADMAP > Unpack multiple archives by one command.

Maybe the Altap stuff should insert something like this Image on the top of this forum

Re: extract many archive files (zip etc) at once

Posted: 08 Jan 2006, 11:44
by Jan Rysavy
.me wrote:Maybe the Altap stuff should insert something like this Image on the top of this forum
There is already Forum Index -> Feature Requests -> Before you post.

I'm afraid we don't know a way to force people to read before posting :)

Re: extract many archive files (zip etc) at once

Posted: 09 Jan 2006, 11:50
by KNUT
vygi wrote:a possibility to unzip (unpack/extract) several files at once would be great, eg. select archive files, and choose "extract all here" from the right-click menu (or from a plugin menu).
I solved this problem via infozip:
- Configuration > Archivers > Unpackers in...
- New entry "UNZIP all (InfoZIP)":
-- external program
-- file mask: "zip"
-- Command: "D:\Tools\Packer\unzip" (your path here!!)
-- Argument: ""$(ArchivePath)\*.zip""

Re: extract many archive files (zip etc) at once

Posted: 19 Jan 2006, 16:07
by grymmjack
KNUT wrote:
vygi wrote:a possibility to unzip (unpack/extract) several files at once would be great, eg. select archive files, and choose "extract all here" from the right-click menu (or from a plugin menu).
I solved this problem via infozip:
- Configuration > Archivers > Unpackers in...
- New entry "UNZIP all (InfoZIP)":
-- external program
-- file mask: "zip"
-- Command: "D:\Tools\Packer\unzip" (your path here!!)
-- Argument: ""$(ArchivePath)\*.zip""
Also there is a third party tool (which works in context menu and by proxy works also in SS) called Unziplify. It's incredibly useful. It will dive deep, deep, deep.

http://www.silverbandsoftware.com/tabdown/unziplify/

Unziplify is also free. If you use it as much as I do though, donate, so he will continue supporting it :)

How does infozip work? Is it an option to recursively extract (I don't see an option on argument field).

Re: extract many archive files (zip etc) at once

Posted: 19 Jan 2006, 16:25
by KNUT
grymmjack wrote:How does infozip work?
See: Infozip, Unzip
grymmjack wrote:Is it an option to recursively extract (I don't see an option on argument field).
Nope, so far I know

Re: extract many archive files (zip etc) at once

Posted: 30 Apr 2007, 04:34
by fraktik
KNUT wrote: I solved this problem via infozip:
Great!
It was (almost) last thing, for what I need TC!!
(last is work with unicode filename)

THX for lot of saved time!

:D

Posted: 30 Apr 2007, 14:17
by zarevak
Hi,
I just add my 2 cents: WinRAR contains shell context menu for unpacking more archives at once (just select them in Salamander and do a Right-Click). It can unpack all archives to one folder or each archive to its own folder. As WinRAR have support for uncopressing almost all archive types, it solves this problem quite nicely.

On the other side, WinRAR is comercial software and costs around €30 :cry: You can evaluate WinRAR for 40 days. The program itself keeps running without any problems when the 40 days are over.

Image

Posted: 30 Apr 2007, 14:39
by KNUT
zarevak wrote:[...]On the other side, WinRAR is comercial software and costs around €30 [...]
30€ for a unzipper - no way!!!! :?

Posted: 30 Apr 2007, 14:44
by Jan Rysavy
What about open source 7-zip?
http://www.7-zip.org/

Posted: 30 Apr 2007, 20:09
by maxovt

Posted: 02 May 2007, 10:10
by KNUT
maxovt wrote:KNUT, what about free single user license WinRAR 3.51 for home? :roll:
www.fforum.ru looks very strange for me... :?

Posted: 02 May 2007, 21:11
by therube
www.Rarlabs.com offered WinRAR 3.5.1 for free as a promotion some time ago. All the (promotional) keys were the same, & are only valid for the 3.5.1 version of the program.

Now technically, the promotion is over & has been for a long time now.

Guess you could email them & ask if they'd still allow usage of the older version of RAR & the key.

Posted: 04 May 2007, 23:41
by th.
You can use the builtin Windows unzip function in a VBScript like this:

Code: Select all

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objSA = CreateObject("Shell.Application")
Set objArgs = WScript.Arguments
ZipFile=objArgs(0)
l=InStrRev(ZipFile,".zip")
If l>0 Then
	UnzipTarget= Mid(ZipFile,1,l-1)
	If Not objFSO.FolderExists(UnzipTarget) Then objFSO.CreateFolder(UnzipTarget)
	objSA.NameSpace(UnzipTarget).CopyHere(objSA.NameSpace(ZipFile).items)
End If
This will unpack a zip file into a folder with the same name and can be used with multiple files selected in a panel.

Arguments in the User Menu settings have to be "$(FullName)"

Re: extract many archive files (zip etc) at once

Posted: 20 Oct 2007, 12:21
by fraktik
grymmjack wrote:
KNUT wrote:
vygi wrote:a possibility to unzip (unpack/extract) several files at once would be great, eg. select archive files, and choose "extract all here" from the right-click menu (or from a plugin menu).
I solved this problem via infozip:
- Configuration > Archivers > Unpackers in...
- New entry "UNZIP all (InfoZIP)":
-- external program
-- file mask: "zip"
-- Command: "D:\Tools\Packer\unzip" (your path here!!)
-- Argument: ""$(ArchivePath)\*.zip""
Also there is a third party tool (which works in context menu and by proxy works also in SS) called Unziplify. It's incredibly useful. It will dive deep, deep, deep.

http://www.silverbandsoftware.com/tabdown/unziplify/

Unziplify is also free. If you use it as much as I do though, donate, so he will continue supporting it :)

How does infozip work? Is it an option to recursively extract (I don't see an option on argument field).
Can somebody make simple Step-by-step manual to set Unziplify.exe pls?
I was used infozip by this thread, but recursive unziping will be much better!