文件io
文件io(系统调用):不带缓存且都由内核提供的系统调用。有open()、close()、read()、write()
open()函数要用到的头文件:
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
标准头文件所在的系统路径:/usr/include
如果头文件在默认的系统路径,直接用#include <头文件.h>
如果头文件在默认的系统路径的某个子目录中,用#include <子目录名/头文件.h>
当一个进程终止时,它打开的所有文件都有内核自动关闭。