linux文件与目录操作
摘要:
1.stat 获取文件属性 #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> int stat(const char *filename,struct stat *buf); int fstat(fd, struct stat *buf); int lstat(const char *filename, struct stat *buf); fstat与stat的区别是fstat通过文件描述符指定文件;lstat与stat的区别在于,对于符号连接文件,lstat返回的是符号链接文 阅读全文
posted @ 2012-08-06 20:14 好坏 阅读(2219) 评论(0) 推荐(1) 编辑