Regular way:
TCHAR filename[255];
ifstream stm;
stm.open(filename, mode);
A workaround for unicode filename:
ifstream stm(_wfopen(filename, mode));
Regular way:
TCHAR filename[255];
ifstream stm;
stm.open(filename, mode);
A workaround for unicode filename:
ifstream stm(_wfopen(filename, mode));
WENXUECITY.COM does not represent or guarantee the truthfulness, accuracy, or reliability of any of communications posted by other users.
Copyright ©1998-2024 wenxuecity.com All rights reserved. Privacy Statement & Terms of Use & User Privacy Protection Policy