in reply to how to extract zip files to specified location

This way is easy:
my $endpath = 'C:\blah\blah\; foreach (@members){ $zip->extractMember( $_, "$endpath\\$_"); }
~~David~~

Replies are listed 'Best First'.
Re^2: how to extract zip files to specified location
by bliako (Abbot) on Sep 13, 2019 at 12:00 UTC

    This works for me even when archive contains subdirs (e.g. META-INF/manifest.xml)