会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
andriod2012
博客园
首页
新随笔
联系
订阅
管理
MFC 中打开 文件,文件夹,以及删除文件,文件夹操作
/**************************************** 打开文件 **************************************/ void CFileSendClientDlg::OnOpenfile() { // TODO: Add your control notification handler code here POSITION pos= m_FileList.GetFirstSelectedItemPosition(); int _nSelect = m_FileList.GetNextSelectedItem(pos); if(_nSelect>=0){ ShellExecute(NULL,"Open",m_FileList.GetItemText(_nSelect,0),NULL,NULL,SW_SHOWNORMAL); }else { AfxMessageBox("请选择一个你要打开的文件"); } }
/**************************************** 打开文件目录 **************************************/ void CFileSendClientDlg::OnOpenpath() { ShellExecute(NULL,"Open","",NULL,NULL,SW_SHOWNORMAL); }
/**************************************** 删除文件 **************************************/ void CFileSendClientDlg::OnDelete() { // TODO: Add your control notification handler code here POSITION pos= m_FileList.GetFirstSelectedItemPosition(); int _nSelect = m_FileList.GetNextSelectedItem(pos); if(_nSelect>=0){ DeleteFile(m_FileList.GetItemText(_nSelect,0));// m_FileList.DeleteItem(_nSelect); }else { AfxMessageBox("请选择一个你要删除的文件"); } }
rmdir() DeleteDirectory(sTempDir) RemoveDirectory(sTempDir)
posted @
2011-12-01 18:32
andriod2012
阅读(
825
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告