摘要:
<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( 阅读全文