博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ 判断目录是否存在并新建目录
阅读量:5842 次
发布时间:2019-06-18

本文共 612 字,大约阅读时间需要 2 分钟。

http://blog.csdn.net/u012005313/article/details/50688257

#include 
#include
#include
#include
#include
#include
#include
using namespace std;int main(){ string cursubdirname = "123"; if (access(cursubdirname.c_str(), 0) == -1) { cout << cursubdirname << " is not existing" << endl; cout << "now make it" << endl;#ifdef WIN32 int flag = _mkdir(cursubdirname.c_str());#endif #ifdef linux int flag = mkdir(dir.c_str(), 0777);#endif if (flag == 0) { cout << "make successfully" << endl; } else { cout << "make errorly" << endl; } }}

 

你可能感兴趣的文章
Mockito使用注意事项
查看>>
[LeetCode] Palindrome Linked List 回文链表
查看>>
UVA - 825Walking on the Safe Side(dp)
查看>>
android大概是通过logcat拦截Log
查看>>
关于codeMirror插件使用的一个坑
查看>>
评论:人才流失强力折射出现实畸形人才观
查看>>
git服务器gitlab之搭建和使用--灰常好的git服务器【转】
查看>>
基于机器学习的web异常检测——基于HMM的状态序列建模,将原始数据转化为状态机表示,然后求解概率判断异常与否...
查看>>
分享一种需求评审的方案
查看>>
虚拟运营商10月或大面积放号 哭穷背后仍有赢家
查看>>
Server2016开发环境配置
查看>>
分布式光伏发电建设中的逆变器及其选型
查看>>
增强网络安全防御 推动物联网走向应用
查看>>
UML中关联,组合与聚合等关系的辨析
查看>>
《大数据管理概论》一3.2 大数据存储与管理方法
查看>>
PowerBuilder开发简单计算器
查看>>
怎样使用linux的iptables工具进行网络共享
查看>>
《HTML5与CSS3实战指南》——导读
查看>>
RHEL6下安装oracle 10g(一)
查看>>
Kconfig的格式
查看>>