in reply to Re: Archive::Zip and german charset
in thread Archive::Zip and german charset
Also using File::Find did not work out$file="stra.e\.txt"; $member = $zip->addFile("$file");
find(\&wanted, "c:/test"); sub wanted { $file=$File::Find::name; if (/stra.e\.txt/){ $file=$_; } }
|
|---|