Is this worthy trying?

来源: 2006-11-09 13:30:34 [旧帖] [给我悄悄话] 本文已被阅读:

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

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