Environment: Gcc/G++ Linux
I have a non-ascii file in file system and I'm going to open it.
Now I have a wchar_t*, but I don't know how to open it. (my trusted fopen only opens char* file)
Please help. Thanks a lot.
feedback
|
|
There are two possible answers: If you want to make sure all Unicode filenames are representable, you can hard-code the assumption that the filesystem uses UTF-8 filenames. This is the "modern" Linux desktop-app approach. Just convert your strings from If you want to do things the more standards-oriented way, you should use And finally, not exactly an answer but a recommendation: Storing filenames as | |||
|
feedback
|
|
Convert wchar string to utf8 char string, then use fopen.
| |||||||||
feedback
|
Linux is not UTF-8, but it's your only choice for filenames anyway(Files can have anything you want inside them.) With respect to filenames, linux does not really have a string encoding to worry about. Filenames are byte strings that need to be null-terminated. This doesn't precisely mean that Linux is UTF-8, but it does mean that it's not compatible with wide characters as they could have a zero in a byte that's not the end byte. But UTF-8 preserves the no-nulls-except-at-the-end model, so I have to believe that the practical approach is "convert to UTF-8" for filenames. The content of files is a matter for standards above the Linux kernel level, so here there isn't anything Linux-y that you can or want to do. The content of files will be solely the concern of the programs that read and write them. Linux just stores and returns the byte stream, and it can have all the embedded nuls you want. | |||||
feedback
|
|
Check out this document http://www.firstobject.com/wchar_t-string-on-linux-osx-windows.htm I think Linux follows POSIX standard, which treats all file names as UTF-8. | |||
|
feedback
|
|
I take it it's the name of the file that contains non-ascii characters, not the file itself, when you say "non-ascii file in file system". It doesn't really matter what the file contains. You can do this with normal fopen, but you'll have to match the encoding the filesystem uses. It depends on what version of Linux and what filesystem you're using and how you've set it up, but likely, if you're lucky, the filesystem uses UTF-8. So take your wchar_t (which is probably a UTF-16 encoded string?), convert it to a char string encoded in UTF-8, and pass that to fopen. | |||
|
feedback
|