下面是一个函数可以使用CFileDialog取得文件路径,然后用CFile打开的.
(其中,m_szEditText是已经绑定到一个CEdit里面的CString)
CString m_szTmp;
char buf[1000];
CFileDialog dlg(TRUE,"mdl","*.mdl");
if(dlg.DoModal()==IDOK) {
CFile mfile;
mfile.Open(dlg.GetPathName(), CFile::modeRead);
mfile.Read(buf,sizeof(buf));
m_szTmp = buf;
m_szEditText = m_szTmp;
mfile.Close();
}
UpdateData(FALSE);
---------------------------------------------
CFileDialog Class Members
Data Members
m_ofnThe Windows OPENFILENAME structure. Provides access to basic file dialog box parameters.
Construction
CFileDialogConstructs a CFileDialog object.
Operations
DoModalDisplays the dialog box and allows the user to make a selection.GetPathNameReturns the full path of the selected file.GetFileNameReturns the filename of the selected file.GetFileExtReturns the file extension of the selected file.GetFileTitleReturns the title of the selected file.GetNextPathNameReturns the full path of the next selected file.GetReadOnlyPrefReturns the read-only status of the selected file.GetStartPositionReturns the position of the first element of the filename list.
Overridables
OnShareViolationCalled when a share violation occurs.OnFileNameOKCalled to validate the filename entered in the dialog box.OnLBSelChangedNotifyCalled when the list box selection changes.OnInitDoneCalled to handle the WM_NOTIFY CDN_INITDONE message.OnFileNameChangeCalled to handle the WM_NOTIFY CDN_SELCHANGE message.OnFolderChangeCalled to handle the WM_NOTIFY CDN_FOLDERCHANGE message.OnTypeChangeCalled to handle the WM_NOTIFY CDN_TYPECHANGE message.