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

检测并创建文件夹

时间:2019-06-20 12:34:16      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:成功   创建   pat   system   nbsp   返回   log   pre   style   

     std::string folderPath = "c:"+ "\\log";
     std::string command;
     command = "mkdir -p " + folderPath;
//     system(command.c_str());
     if (0 != access(folderPath.c_str(), 0))
     {
           // if this folder not exist, create a new one.
           mkdir(folderPath.c_str());   // 返回 0 表示创建成功,-1 表示失败
//           qDebug() << folderPath.c_str();
      }

 

检测并创建文件夹

标签:成功   创建   pat   system   nbsp   返回   log   pre   style   

原文地址:https://www.cnblogs.com/nanqiang/p/11057948.html

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