open write read
open#include<fcntl.h>int open(const char *pathname, int flags, mode_t mode)flags有三个必须选项 O_RDONLY, O_WRONLY, O_RDWR 只读,只写,读写flags其他选项O_CREAT, O_APPENDO_CREAT 这个参数必须和第三个参数mode一起使用,mode指定文件的访...