RE: Archive Zip Help

2002-05-01 Thread csaba . raduly
On 30/04/2002 18:40:35 Joseph Jongquist wrote: Hello Carter, Try these suggestions: my $dir = C:/tmp2; CHANGE TO: my $dir = C:\\tmp2; AARGH ! Please don't ever suggest that. Perl is perfectly capable of understanding C:/tmp2 Even Windows understands C:/tmp2. The only thing that

RE: Archive Zip Help

2002-04-30 Thread Joseph Youngquist
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