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
阅读(3029)
推荐(0) 编辑
gdb gcc svn
摘要:用GDB调试程序 http://dsec.pku.edu.cn/~yuhj/wiki/gdb.html用GDB调试程序 - Ubuntu中文 http://blog.csdn.net/chief1985/archive/2008/05/13/2441150.aspxg++的使用 http://www.dutor.net/index.php/2009/05/g-compiler-usage/gcc ...
阅读全文
posted @
2010-01-11 19:12
怂QQ
阅读(339)
推荐(0) 编辑