vc中unicode读写文件CStdioFile

来源:互联网 发布:知党史作文 编辑:程序博客网 时间:2024/06/06 04:33
TCHAR acBuff[MAX_PATH];::SecureZeroMemory(acBuff, sizeof(acBuff));::ExpandEnvironmentStrings(PROGRAM_PATH, acBuff, MAX_PATH);CString strPath(acBuff);strPath += _T("1.txt");CStdioFile file; file.Open(strPath, CFile::modeCreate|CFile::modeWrite|CFile::modeNoTruncate);file.SeekToEnd();file.WriteString(cstrContent);file.Close(); 

 
原创粉丝点击