2010年4月2日
摘要: 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 阅读(2916) 评论(0) 推荐(0) 编辑