码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 创建路径方法

时间:2016-02-21 22:46:44      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:

#include "stdio.h"

#include "stdlib.h"

#include <sys/types.h>

#include <sys/stat.h>

#include <errno.h>

#include <dirent.h>

 

void createPath(const std::string & path)//创建路径文件夹

{

    DIR * dir = nullptr;

    dir = opendir(path.c_str());

    if(!dir)//目录不存在

    {

        vector<string> v;

        split(path, v,"/");

        string path = "";

        for(size_t i = 0;i < v.size();i++)//一级一级的创建目录

        {

            path+=v[i];

            path+="/";

            mkdir(path.c_str(), S_IRWXU | S_IRWXG | S_IRWXO);//创建目录

        }

    }

}

c++ 创建路径方法

标签:

原文地址:http://www.cnblogs.com/HemJohn/p/5205630.html

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