CString m_strPath, str;
CStdioFile rFile;
CFileException ex;
CFileDialog dlg(TRUE, _T("*.txt"), NULL, OFN_FILEMUSTEXIST | OFN_OVERWRITEPROMPT, _T("TXT Files(*.txt)|*.txt|"), NULL);
if (dlg.DoModal() == IDOK)
{
m_strPath = dlg.GetPathName();
rFile.Open(m_strPath, CFile::modeReadWrite | CFile::typeText, &ex);
while (rFile.ReadString(str))
{
getFileString += (str + _T("\r\n"));
}
rFile.Close();
// edit control에 txt파일 쓰기
mFileView.SetWindowTextW(getFileString);
}
'프로그래밍 > VC++ 개발 코딩' 카테고리의 다른 글
지정 폴더 및 내부 파일 삭제 (0) | 2020.06.23 |
---|---|
MFC 에서 ListBox에 출력 된 정보들을 *.txt 파일로 저장할 때 (0) | 2020.06.09 |
lpvoid 타입에 float 변환하기 (0) | 2020.02.22 |
CString to string, string to CString 변환 (0) | 2019.10.22 |
비쥬얼 스튜디오 - 단위 테스트(유닛 테스트) (0) | 2019.10.03 |