unix操作文件的系统接口。


打开文件

1
2
3
4
#include <fcntl.h>
int open(const char* path, int oflag,... /* mode_t mode*/);
int openat(int fd, const char *Path, int oflag, ... /*mode_t mode */);
俩个函数的返回值:若成功,返回文件描述符;若出错,返回-1

读文件

写文件

写文件