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

vc递归创建文件夹

时间:2015-01-21 21:47:28      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

 1 void  CreateDir(const string& strPath)
 2 {
 3     if (PathFileExists(strPath.c_str()))
 4     {
 5         return;
 6     }
 7 
 8     size_t sPrePos = 0;
 9     string strTmp = "";
10     size_t sPos = strPath.find(\\);
11     if (sPos == string::npos)
12     {
13         return;
14     }
15 
16     strTmp = strPath.substr(0, sPos + 1);
17     if ( !PathFileExists( strTmp.c_str() ) )
18     {
19         return;
20     }
21 
22     sPrePos = sPos + 1;
23     sPos = strPath.find(\\, sPrePos);
24     while (sPos != string::npos)
25     {
26         strTmp = strPath.substr(0, sPos);
27         if (!PathFileExists(strTmp.c_str()))
28         {
29             CreateDirectory(strTmp.c_str(), NULL);
30         }
31 
32         sPrePos = sPos + 1;
33         sPos = strPath.find(\\, sPrePos);
34     }
35 
36     if (!PathFileExists(strPath.c_str()))
37     {
38         CreateDirectory(strPath.c_str(), NULL);
39     }
40 
41 }

 

vc递归创建文件夹

标签:

原文地址:http://www.cnblogs.com/liuxupiaoshi/p/4239882.html

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