-
[MFC Project] dialog base에서 파일 입*출력(파일처리)<CFileDialog>case Computer : 2010. 5. 29. 15:53
다이얼로그 베이스에서 파일 저장 관련 부분만 올린다.
코드에서 m_strView는 저장하려는 string값이다.
파일 다이얼로그 생성시에pDlg(false, 1, 2, 3, 4, NULL);1 : 저장시에 자일 형식 리스트 이다.2 : 기본 파일 이름이다.3 : 파일 쓰기 형식을 나타낸다4 : 기본적으로 보여줄 확장자 필터이다.
CString FileName;char Filter[] = "Text File(*.txt)";
CFileDialog pDlg(false, "textfile(*.txt)", "*.txt", OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT, Filter, NULL);if(pDlg.DoModal() == IDOK){FileName = pDlg.GetFileName();FILE* fp = fopen(FileName, "wt");if(fp == NULL){AfxMessageBox("Do not Create File");return ;}fwrite(m_strView, m_strView.GetLength(), 1, fp);fclose(fp);}delete pDlg;반응형'case Computer :' 카테고리의 다른 글
[MFC Project] ini 설정 파일 관리하기 (0) 2010.06.04 [C/C++] C++ STL 사용하기(List, Queue) <수정> (4) 2010.06.01 [MFC Project] Dialog Base Application 에서 Menu 추가 하기 (0) 2010.05.29 [MFC Project] Local ip 가져오기 (0) 2010.05.12 [MFC Project] Base Diagram (0) 2010.05.12