Unicode chdir
How can I chdir to a unicode Japanese directory in c?
I tried reading the unicode string from a file and then passing it to chdir as follows...
fopen(blah...
fgets(blah... into Str
chdir("/mnt/JapWin/%s", Str);
No luck.
Isn't %S (capital s) unicode?
How do I mix normal strings and unicode strings.
Isn't there a function I can call to convert normal strings to unicode strings?
|