Opening fstream with file with Unicode file name under Windows using non-MSVC compiler

后端 未结 3 519
暗喜
暗喜 2020-12-10 14:30

I need to open a file as std::fstream (or actually any other std::ostream) when file name is \"Unicode\" file name.

Under MSVC I have non-standard e

3条回答
  •  有刺的猬
    2020-12-10 15:21

    Currently there is no easy solution.

    You need to create your own stream buffer that uses _wfopen under the hood. You can use for this for example boost::iostream

提交回复
热议问题