in reply to Re: Archive::Zip and german charset
in thread Archive::Zip and german charset

It might work from the prompt but I could not open a file
$file="stra.e\.txt"; $member = $zip->addFile("$file");
Also using File::Find did not work out
find(\&wanted, "c:/test"); sub wanted { $file=$File::Find::name; if (/stra.e\.txt/){ $file=$_; } }