You are here

How do I extract multivolume 7-Zip archive using Nsis7z plug-in?

2 posts / 0 new
Last post
GrzegorzJZD
Offline
Last seen: 3 months 2 weeks ago
Joined: 2008-04-20 19:00
How do I extract multivolume 7-Zip archive using Nsis7z plug-in?

NSISPortable 2.44
Nsis7z plug-in

Single volumne 7-Zip archive could be extract by this code:
File "ArchiveName.7z"
Nsis7z::ExtractWithDetails "ArchiveName.7z" "Installing package %s..."
Delete "$OUTDIR/ArchiveName.7z"

How do I extract multivolume 7-Zip archive using Nsis7z plug-in in NSIS Installer? File name is file.7z.001, file.7z.002, file.7z.003.

NathanJ79
NathanJ79's picture
Offline
Last seen: 4 years 2 months ago
Joined: 2007-07-31 15:07
Try this?

Not a programmer, but if you find yourself wanting results and I'm the only one who's replied for any amount of time, you might try this, see what comes of it.

I don't know where to put it in the code, that code looks foreign to me, but wherever you define the input archive, instead of name.7z, put, as you say, name.7z.001. Now, a lot of archiving programs will detect a split archive and automatically move onto the next one. They should be joined like that. So your plugin should work the same way.

But again, I'm not a programmer, it just seems like that's how it'd be, based on my experience working with archives. Sorry if it doesn't help.

Log in or register to post comments