Hopefully the question title describes my issue well enough.
Platform: OSX 10.8, llvm with clang++ compiler
I have got a directory with filenames in Japanese or Cyrillic characters. Those filenames are displayed correctly (e.g. via ls) in iTerm2 with en_EN.UTF-8 locale and Monaco 10 font (not sure if locale/font make a difference, but it seems it should). A vanilla xterm without UTF-8 support, however, prints scrambled symbols or '?' characters for non-ASCII characters.
Here is the actual question:
In C++ program, I use readdir() from dirent.h to list the contents of a directory containing filenames in Japanese or Cyrillic characters. Printing the d_name property of the struct dirent result of readdir() displays the correct characters in the Xcode terminal. That is, e.g. Japanese kanji really are displayed as such.
Same is true when executing the program from iTerm2. Again, scrambled characters in non-UFT-8 xterm.
Since the byte size of Japanese filenames does not equal the number of characters displayed, I boldly assume, the
dirent.hfunctions work with UTF-8 strings. Is it possible that all of the OSX C-Library works that way?Therefor, is it safe to e.g. alter the
struct dirent.d_nameorstrcpyit and create a new file using that altered string? Is it possible to step in some trap that leads to '?????' filenames being written instead of kanji?Would setting a different locale, e.g. "C", mess things up (does not seem that way when using
setlocale(LC_ALL,"C")).
Note: I am not interested in possible 3rd party alternatives to dirent.h. I wrote the program solely to shed some light on how OSX deals with locale and character encoding.
