Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code

use utf8;
open($file, '>:encoding(UTF-8)', "さっちゃん.txt") or die $!;
print $file "さっちゃん";

But I get the file name as ã•ã£ã¡ã‚ƒã‚“.txt

I was wondering if there was a way of making this work as I would expect (meaning I have a unicode file name) this without resorting to Win32::API, Win32API::* or moving to another platform and using a Samba share to modify the files.

The intent is to ensure we do not have any Win32 specific modules that need to be loaded (even conditionally).

share|improve this question
1  
it works pretty fine on my side (windows XP, cygwin perl 5.10). Are sure you have problems with perl and not with some other things? Do you really save the source in UTF-8 encoding? – n0rd May 13 '11 at 13:56
@n0rd I am using ActiveState Perl rather than Cygwin – Archimedes Trajano May 14 '11 at 13:53
1  
yup, tried to run it on ActivePerl, and it creates file with garbled name. – n0rd May 14 '11 at 20:24

2 Answers

Perl treats file names as opaque strings of bytes. They need to be encoded as per your "locale"'s encoding (ANSI code page).

In Windows, this is is usually cp1252. It is returned by the GetACP system call. (Prepend "cp"). However, cp1252 doesn't support Japanese characters.

Windows also provides a "Unicode" aka "Wide" interface, but Perl doesn't provide access to it using builtins*. You can use Win32API::File's CreateFileW, though. IIRC, you need to still need to encode the file name yourself. If so, you'd use UTF-16le as the encoding.

* — Perl's support for Windows sucks in some respects.

share|improve this answer
That is correct encoding cp1252 yields ? for Japanese characters, thus it makes it an invalid Windows file name as ? file name character. – Archimedes Trajano May 14 '11 at 14:05
1  
@Archimedes Trajano, you can configure encode to return something other than "?", so you could create valid Windows file name. However, you can't create the file name you want using CreateFileA (what Perl uses). You have to use CreateFileW, and Win32API::File provides access to it. – ikegami May 14 '11 at 21:20
@ikegami that's correct, but that's why I stated in my original question to not use Win32API stuff nor use a remote Samba share. – Archimedes Trajano May 15 '11 at 1:05
1  
@Archimedes Trajano, You said not to use Win32::API. Despite the similar name, Win32API::File is completely unrelated. For the third time, Perl builtins don't use CreateFileW, and you need to use CreateFileW. As such, you need an XS module that provides access to CreateFileW, and Win32::API (with some extra work) and Win32API::File (without extra work) are such modules – ikegami May 15 '11 at 6:33
I have rephrased the question to ensure that Win32 specific modules get considered. The intent of the question is to ensure we do not have any Win32 specific modules that need to be loaded (even conditionally). – Archimedes Trajano Jun 5 '11 at 5:14
show 2 more comments

Use Encode::Locale:

use utf8;
use Encode::Locale;
use Encode;

open($file, '>:encoding(UTF-8)', encode(locale_fs => "さっちゃん.txt") ) or die $!;
print $file "さっちゃん";
share|improve this answer
looks promising, but I can't seem to build Encode::Locale with my current Perl installation in Windows. Anyone verify this? – Archimedes Trajano May 4 '12 at 22:15
just tested it on ActivePerl 5.12 after I ran "ppm install Encode-Locale" and got an error on the line with "open" as "Invalid arguent" – Archimedes Trajano May 5 '12 at 16:00
use Strawberry Perl on Windows. – godegisel Sep 5 '12 at 14:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.