创建多路径文件夹

Posted judes

tags:

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

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;
}

 

以上是关于创建多路径文件夹的主要内容,如果未能解决你的问题,请参考以下文章

创建自己的代码片段(CodeSnippet)

java Ftp上传创建多层文件的代码片段

多线程 Thread 线程同步 synchronized

VSCode创建自定义用户片段

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

创建多路径文件夹