码迷,mamicode.com
首页 > 编程语言 > 详细

MFC 创建文件夹(时间命名)

时间:2020-01-03 12:35:43      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:cto   code   rect   current   ret   color   ctime   目录   directory   

 

    //E盘根目录创建以时间命名的文件夹,其中再建4个子文件夹
    CString strTime = CTime::GetCurrentTime().Format("%Y%m%d");//获取当前时间
    CString strPath = _T("E:\\" + strTime);//路径
    if (!PathIsDirectory(strPath))//不存在则创建
    {
        CString strMsg = strPath + _T("不存在,是否创建?");
        if (AfxMessageBox(strMsg, MB_YESNO) == IDYES)
        {
            CreateDirectory(strPath, NULL);//创建主文件夹

            CString strPath1 = strPath + _T("\\up");
            CString strPath2 = strPath + _T("\\down");
            CString strPath3 = strPath + _T("\\left");
            CString strPath4 = strPath + _T("\\right");
            if (PathIsDirectory(strPath))//主文件夹存在,创建子文件夹
            {
                CreateDirectory(strPath1, NULL);
                CreateDirectory(strPath2, NULL);
                CreateDirectory(strPath3, NULL);
                CreateDirectory(strPath4, NULL);
                return;
            }
        }
    }
    return;

 

MFC 创建文件夹(时间命名)

标签:cto   code   rect   current   ret   color   ctime   目录   directory   

原文地址:https://www.cnblogs.com/xixixing/p/12144109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!