in reply to Re: Directory operations and Unicode
in thread Directory operations and Unicode
The problem is that Win32 seems to be the only platform that offers an Unicode-aware file system API.
And as far as I know, all perls compiled for Windows still use the "ANSI" API to access the file system (i.e. CreateFileA instead of CreateFileW). Completely switching Perl to use the "wide" API may have "interesting" side effects. A very obvious one would be readdir returning Unicode strings instead of byte strings. Will existing code be able to handle that?
Alexander
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Directory operations and Unicode
by moritz (Cardinal) on Nov 02, 2011 at 11:16 UTC |