|
well, this does NOT work
$zip = Archive::Zip->new();
$zip->setErrorHandler( \<ZipErrors );
but THIS does
$zip = Archive::Zip->new();
Archive::Zip::setErrorHandler( \<ZipErrors );
altho the doc uses the first example..
now my error handler gets called..
how can I get the name of the file causing the problem in the handler?
Sam |