반응형
CFile Write()
CFile file;
CString strData = _T("ABC");
file.Open(_T("out.text"), CFile::modeCreate | CFile::modeWrite);
file.Write(strData, strData.GetLength()*sizeof(TCHAR)); //// sizeof(TCHAR) importent
file.Close();
반응형
'C++' 카테고리의 다른 글
How to remove the console window (0) | 2020.12.01 |
---|---|
다이얼로그 숨김 (0) | 2020.07.16 |
MFC ListControl Func (0) | 2020.06.23 |
How to MFC ListControl Header Size Auto Setting (0) | 2020.06.02 |
CString Path 경로 가져오기 (0) | 2020.06.02 |