MFC创建多级目录多级文件夹

BOOL CreateMultiDirectory(CString strPath)
{
    CString strSubPath;
    CString strMsg;
    int nCount = 0; 
    int nIndex = 0;

    //通过“\”来分割路径,从而创建各级的目录。
    do
    {
        nIndex = strPath.Find(_T("\\"),nIndex) + 1;
        nCount++;
    }while( (nIndex-1) != -1);
    nIndex = 0;
    //检查,并创建目录
    while( (nCount-1) >= 0)
    {
        nIndex = strPath.Find(_T("\\"),nIndex) + 1;
        if( (nIndex - 1) == -1)
            strSubPath = strPath;
        else
            strSubPath = strPath.Left(nIndex);

        if(!PathFileExists(strSubPath))// - 检查目录是否存在
        {
            if(!CreateDirectory(strSubPath,NULL))// -不存在则创建目录
            {
                strMsg.Format(_T("创建目录【%s】失败!"),strSubPath);
                AfxMessageBox(strMsg,MB_OK);
                return FALSE;
            }
        }
        nCount--;
    };
    return TRUE;
}

 

你可能感兴趣的:(MFC创建多级目录多级文件夹)