头文件:#include #include #include
定义函数:
int open(const...char * pathname, int flags);
int open(const char * pathname, int flags, mode_t mode);
函数说明:
参数...附加说明:使用 access()作用户认证方面的判断要特别小心, 例如在access()后再作open()空文件可能会造成系统安全上的问题....\n", buffer[80];
fd = open("/tmp/temp", O_WRONLY|O_CREAT);
write(fd, s, sizeof(s));
close...(fd);
fd = open("/tmp/temp", O_RDONLY);
size = read(fd, buffer, sizeof(buffer));
close(fd