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

Posted xixixing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MFC 创建文件夹(时间命名)相关的知识,希望对你有一定的参考价值。

 

    //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 创建文件夹(时间命名)的主要内容,如果未能解决你的问题,请参考以下文章

有没有办法关闭代码片段中的命名建议?

VSCODE 片段 PHP 自动填充命名空间

怎样给MFC 窗口命名?

C++ 代码片段(积累)

VS2010下MFC对话框程序使用CFileDialog对话框出现外部无法解析的密令,错误如下

VS2010-MFC(VS2010应用程序工程中文件的组成结构)