文件IO(1)--creat和open
摘要:
今天开始学习unix/linux系统下的文件I/O函数—打开文件、读文件、写文件等。大多数文件I/O只需要用到5个函数:open,read,write,lseek已经close,这5个函数都直接调用同名的系统调用,所以是不带缓冲的,本节,主要介绍open和creat函数。1.open函数1)函数原型:#include <fcntl.h>int open(const char* pathname,int flags)int open(const char* pathname,int flags,mode_t mode);2)函数功能:打开或建立一个文件。对于open函数,仅当创建文件 阅读全文
posted @ 2012-08-02 15:55 好坏 阅读(8621) 评论(0) 推荐(0) 编辑