I have an application that is working with file I/O using utf-8 encoded widestrings.
Working Code:
const wchar_t* wc = L"C:\Documents\TestPath\TestFile.txt";
std::wfstream wf(wc);
wf.imbue(std::locale(wf.getloc(), new std::codecvt_utf8<wchar_t, 0x10ffff, std::consume_header>()));
return wf.is_open();
...
wf << L"測試文件夾" << L"\n";
However, once unicode characters are introduced in the filepath the file no longer opens properly. Ie. the following code does not work and returns false:
const wchar_t* wc = L"C:\Documents\測試文件夾\TestFile.txt";
std::wfstream wf(wc);
return wf.is_open();
What am I doing wrong here? It seems like there should be a simple way to get wfstream working with unicode filepaths but I have searched all over the internet and cannot find one.
Thanks
Your string literals need to escape
\
characters, eg:Otherwise, use raw string literals instead:
That being said, double check that the charset used to save your cpp file matches the charset the compiler uses to parse the file, otherwise non-ASCII characters like
測試文件夾
won't work in string literals correctly.Otherwise, use Unicode escape sequences instead: