Hello Carter,

Try these suggestions:

>my $dir = "C:/tmp2";
CHANGE TO:
my $dir = "C:\\tmp2";

>my $member = $zip->addDirectory('$dir');
CHANGE TO:
my $member = $zip->addDirectory($dir);
OR:
my $member = $zip->addDirectory("$dir");


I'm not familure at all with the package, but I think this will have you up
and running.

hth,
Joe

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to