CFileDialog 多文件

来源:互联网 发布:elk windows 搭建 编辑:程序博客网 时间:2024/06/03 05:55
#define DLG_FILTER "ALL Files (*.*)|*.*||" 
#define DLG_EXT   "* " 



CFileDialog dlg(TRUE, _T(DLG_EXT), NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT | OFN_ALLOWMULTISELECT, _T(DLG_FILTER)); 


if (dlg.DoModal() == IDOK) 

POSITION pos = dlg.GetStartPosition(); 


while (pos != 0) 

CString s = dlg.GetNextPathName(pos); 

}
原创粉丝点击