QQ登录

只需一步,快速开始

上位机MFC如何创建目录

[ 复制链接 ]
目录,即文件夹,对应创建的函数为CreateDirectory。使用比较简单。
同样我们也可以简单创建一个工程用按钮 控件来调用下面代码查看效果。
  1. void CDemoDlg::OnCreateDir()
  2. {
  3.         CString strDirectory = _T("Demo");

  4.         //查找文件
  5.         CFileFind finder;
  6.         if (finder.FindFile(strDirectory))
  7.         {
  8.                 finder.FindNextFile();
  9.                 if (finder.IsDirectory())
  10.                 {
  11.                         AfxMessageBox(_T("目录已经存在。"));
  12.                 }
  13.                 else
  14.                 {
  15.                         AfxMessageBox(_T("目录名与现有的文件名重名。"));
  16.                 }
  17.         }
  18.         else
  19.         {
  20.                 //创建目录
  21.                 if (::CreateDirectory(strDirectory, NULL))
  22.                 {
  23.                         AfxMessageBox(_T("创建目录成功。"));
  24.                 }
  25.                 else
  26.                 {
  27.                         AfxMessageBox(_T("创建目录失败。"));
  28.                 }
  29.         }
  30. }
复制代码


回复

使用道具 举报

快速回复 返回列表 客服中心 搜索