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));

请您先登陆,再发跟帖!