Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^3: encoding of file names

by ikegami (Patriarch)
on Mar 25, 2010 at 21:34 UTC ( [id://830974]=note: print w/replies, xml ) Need Help??


in reply to Re^2: encoding of file names
in thread encoding of file names

I still don't understand what to specify as the from encoding.

Usually, the file names are text encoded as per the local's encoding. In fact, I dare say that's the expectation.

Most users have a UTF-8 locale. You could assume UTF-8, and worry about it when someone complains.

If you want to actually get the right encoding, your best bet is probably the following undocumented function:

require encoding; # Or "use encoding ();" with the parens. my $locale_encoding = encoding::_get_locale_encoding();

This is what core module open uses.

And since you mention it, i actually am curious about Windows

It's a real mess. Bad support by builtins and by modules for accessing Windows's wide character interface. Bad support at finding the code page (last time I checked) of the single-byte interface (even though it's easier than locales in unix). Maybe some other time.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-03-29 14:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found