Is this worthy trying?

Regular way:
TCHAR filename[255];
ifstream stm;
stm.open(filename, mode);

A workaround for unicode filename:
ifstream stm(_wfopen(filename, mode));

請您先登陸,再發跟帖!