in reply to Unicode in filenames
You said you generally have no problem with unicode filenames. Do you mean that on this same OS, similar unicode characters work in similar perl scripts, or is there something special about this case?use Encode; $decodedLocalName = decode('utf8', $name); $decodedLocalName = encode('iso-8859-1', $decodedLocalName); open my $fh, '>', $decodedLocalName ...
|
|---|