会员
商店
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
怂QQ
博客园
首页
新随笔
联系
订阅
管理
2010年4月2日
linux c关于目录是否存在,新建目录等操作
摘要: 1. 创建目录 #include <sys/stat.h> #include <sys/types.h> int mkdir(const char *pathname, mode_t mode);其中,mode就用0777,0755这种形式。2. 判断一个目录是否存在可以使用opendir来判断,这是比较简单的办法。 #include <sys/types.h>...
阅读全文
posted @ 2010-04-02 17:49 怂QQ
阅读(3030)
评论(0)
推荐(0)
编辑