码迷,mamicode.com
首页 > 其他好文 > 详细

创建多路径文件夹

时间:2019-05-09 10:42:45      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:cstring   return   bsp   path   false   directory   direct   lse   span   

BOOL CreateMultiDirs(CString xFilePath)
{
    int xFlag=xFilePath.Find(_T("\\"));
    CString s;
    for(int i=0;i<256;i++)
    {
        xFlag=xFilePath.Find(_T("\\"),xFlag+1);
        if(xFlag>3)
        {
            s=xFilePath.Left(xFlag);
            if (!PathFileExists(xFilePath))
            {
                CreateDirectory(s,0);
            }    
        }
        if(xFlag<0)
            return TRUE;
    }
    return FALSE;
}

 

创建多路径文件夹

标签:cstring   return   bsp   path   false   directory   direct   lse   span   

原文地址:https://www.cnblogs.com/judes/p/10836973.html

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