#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc, char **argv) {
try
{
ifstream file;
string simplePath = "I:/foo.conf";
string markPath = "I:/Folder_à/foo.conf";
file.exceptions(ifstream::failbit | ifstream::badbit | ifstream::eofbit);
file.open(simplePath.c_str()); // ok
file.open(markPath.c_str()); // exception ios_base::failbit set
}
catch (ifstream::failure f)
{
cout << "Exception " << f.what() << endl;
return 1;
}
return 0;
}
如果文件在其路径名中有重音符号(例如àopen()
),则该函数将引发ios_base::failbit set
异常。
一个简单的解决方法是
file.exceptions(ifstream::badbit | ifstream::eofbit); // removed failbit from the mask
但这不是我想要的:如果可能的话,我想将故障位设置为正常。
我正在使用 Visual Studio 2012 和 Windows 8。