There is no install, only path.

You will need to supply the full path to the unzip.exe file in your system call.

For instance, I might use something like this:
[code]
#!/usr/bin/perl -w
$unzipper = "C:/Tools/InfoZip/unzip.exe";
$file = "C:/TEMP/test.zip";
$dstdir = "C:/TEMP/test.zip";
$password = 'nopassword';
$command = "$unzipper -P $password $file -d $dstdir";
print $command . "\n";
print `$command`;
__END__
[/code]

Which would extract the files from $file using the password $password
and put them in the directory $dstdir.

-Jason

On Mon, 24 Jan 2005 11:29:49 -0500, Liza Das <[REMOVED]> wrote:
> Jason,
> 
> Instead of following the steps on the below link, I used the
> steps mentioned on Info-Zip's FAQ page:
> http://www.info-zip.org/pub/infozip/FAQ.html#download
> 
> However after the dowload, I am unable to use this program.
> I get the following message when trying to unzip a file:
>         'unzip' is not recognized as an internal or external command,
>         operable program or batch file.
> 
> I think I've missed the actual install step, can you please guide me as to
> how to install this.
> 
> Thanks
> Liza
_______________________________________________
Perl-Win32-Admin mailing list
Perl-Win32-Admin@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
  • ... Liza Das
    • ... Сергей Черниенко
    • DePriest, Jason R.

Reply via email to