Tagged Questions
The wifstream tag has no wiki summary.
4
votes
3answers
2k views
does (w)ifstream support different encodings
When I read a text file to a wide character string (std::wstring) using an wifstream, does the stream implementation support different encodings - i.e. can it be used to read e.g. ASCII, UTF-8, and ...
1
vote
2answers
389 views
how to use std::wifstream for reading its content as a std::wstring
I am trying this:
std::wstringstream wstrStream;
std::wifstream wifStream(str.c_str());
wifStream >> wstrStream;
but I got this compilation error:
error C2664: ...
0
votes
1answer
669 views
iostream, wifstream, and eclipse/g++ on windows
I am using Eclipse on windows with the MinGW tool chain (g++, etc.). I have a program that I built on darwin that reads and writes to files using wifstream and wofstream. The program comiles and ...