用CFileDialog得到的路径是'\'间隔的
CString strFile="chart Files(*.mat)|*.mat|All Files(*.*)|*.*|";
CFileDialog dlg(true,NULL,NULL,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,strFile);
dlg.DoModal();
CString path=dlg.GetPathName( );
如'e:\k4.mat',
我需要的是e:\\k4.mat.