Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: problems with extended ascii characters in filenames

by graff (Chancellor)
on Mar 16, 2006 at 02:11 UTC ( [id://537023]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    perl -CS -e 'print chr(0xc3),chr(0xa9)' | od -txC
    
    ...
    
    0000000    c3  83  c2  a9                                             
    +   
    0000004
    
  2. or download this
    use Encode;
    
    ...
    @datafiles = grep { -f }, readdir( D );
    $_ = decode( 'utf8', $_ ) for ( @datafiles );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://537023]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-19 04:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found