行云

行至水穷处,坐看云起时。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2012年6月11日

摘要: <Uinx 环境高级编程笔记>1 常用的I/O打开文件int open( const char * pathname, int flags);int open( const char * pathname,int flags, mode_t mode);返回值:文件描述符,一个整数。头文件:#include<sys/types.h> #include<sys/stat.h> #include<fcntl.h>第一个参数: 欲打开的文件路径flags: 访问模式,O_RDONLY, O_WRONLY, O_RDWR, O_CREAT,O_EXCL( 阅读全文
posted @ 2012-06-11 18:54 windflying 阅读(478) 评论(0) 推荐(0) 编辑