Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: how to read unicode filename

by uva (Sexton)
on Mar 13, 2006 at 14:23 UTC ( [id://536250]=note: print w/replies, xml ) Need Help??


in reply to Re: how to read unicode filename
in thread how to read unicode filename

dear monks,
consider a path named d:\\directory1\\

contains the list of directories , some directory contains english letters and some contains chinese letters.
if i use the following program to list the sub directories, it is not giving the directory with chinese letters.
open output,">:utf8","D:\\directory1\\output.doc" or die "Couldn't ope +n STDOUT: $!"; opendir DIR,"D:/directory1" or print " \ncould not open the directory +: $!"; print OUTPUT "\nreading the list from the directory\n"; while ($list=readdir DIR) { if(-d $list) { print OUTPUT "$list\n"; } }
it not even recognise the chinese directory . And the output is
. .. directory1 directory2
both thes directories contains only english letters. But the directories containing chinese letters is not displayed in that output file.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-19 17:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found