C/C++创建多级目录

C运行时库提供的创建目录的函数_mkdir(),在上级目录不存在时会创建失败。所以自己实现了一下创建多级目录,无论上级目录是否存在。

#include
#include
#include
#include
#include

using namespace std;

//得到文件路径的目录
string GetPathDir(string filePath)
{
    string dirPath = filePath;
    size_t p = filePath.find_last_of('\\');
    if (p != -1)
    {
        dirPath.erase(p);
    }
    return dirPath;
}

//创建多级目录
void CreateMultiLevel(string dir)
{
    if (_access(dir.c_str(), 00) == 0)
    {
        return;
    }

    list  dirList;
    dirList.push_front(dir);

    string curDir = GetPathDir(dir);
    while (curDir != dir)
    {
        if (_access(curDir.c_str(), 00) == 0)
        {
            break;
        }

        dirList.push_front(curDir);

        dir = curDir;
        curDir = GetPathDir(dir);
    }

    for (auto it : dirList)
    {       
        _mkdir(it.c_str());
    }
}

int main()
{   
    string dir = "C:\\a\\b\\c\\d";
    CreateMultiLevel(dir);

    return 0;
}

你可能感兴趣的:(C/C++创建多级目录)